summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/ChunkBuffer/Coordinates.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ChunkBuffer/Coordinates.cpp b/tests/ChunkBuffer/Coordinates.cpp
index d4fca1e50..9eb30fa0a 100644
--- a/tests/ChunkBuffer/Coordinates.cpp
+++ b/tests/ChunkBuffer/Coordinates.cpp
@@ -125,10 +125,10 @@ int main(int argc, char** argv)
cChunkBuffer buffer;
buffer.SetBlock(0,0,0,0x42);
cChunkBuffer copy;
- copy = buffer;
+ copy = std::move(buffer);
+ testassert(copy.GetBlock(0,0,0) == 0x42);
+ copy = std::move(copy);
testassert(copy.GetBlock(0,0,0) == 0x42);
- copy = copy;
- testassert(copy.GetBlock(0,0,0) == 0x42)
}
return 0;