summaryrefslogtreecommitdiff
path: root/src/unittest/test_voxelarea.cpp
diff options
context:
space:
mode:
authorShadowNinja <shadowninja@minetest.net>2021-12-01 18:30:40 -0500
committerrubenwardy <rw@rubenwardy.com>2022-04-08 14:55:21 +0100
commit5683bb76cc3a60d952c9f58c41adaa5f195dd3f4 (patch)
tree86154779a5a23b1385a8e6872a7c3d79da51847d /src/unittest/test_voxelarea.cpp
parent3a87fab6c899afa50b2b7615b882d0a81b922832 (diff)
downloadminetest-5683bb76cc3a60d952c9f58c41adaa5f195dd3f4.tar.gz
minetest-5683bb76cc3a60d952c9f58c41adaa5f195dd3f4.tar.bz2
minetest-5683bb76cc3a60d952c9f58c41adaa5f195dd3f4.zip
Fix compiler warnings
Diffstat (limited to 'src/unittest/test_voxelarea.cpp')
-rw-r--r--src/unittest/test_voxelarea.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unittest/test_voxelarea.cpp b/src/unittest/test_voxelarea.cpp
index 9826d2ee7..1d72650d7 100644
--- a/src/unittest/test_voxelarea.cpp
+++ b/src/unittest/test_voxelarea.cpp
@@ -120,7 +120,7 @@ void TestVoxelArea::test_extent()
VoxelArea v1(v3s16(-1337, -547, -789), v3s16(-147, 447, 669));
UASSERT(v1.getExtent() == v3s16(1191, 995, 1459));
- VoxelArea v2(v3s16(32493, -32507, 32753), v3s16(32508, -32492, 32768));
+ VoxelArea v2(v3s16(32493, -32507, 32753), v3s16(32508, -32492, -32768));
UASSERT(v2.getExtent() == v3s16(16, 16, 16));
}
@@ -129,7 +129,7 @@ void TestVoxelArea::test_volume()
VoxelArea v1(v3s16(-1337, -547, -789), v3s16(-147, 447, 669));
UASSERTEQ(s32, v1.getVolume(), 1728980655);
- VoxelArea v2(v3s16(32493, -32507, 32753), v3s16(32508, -32492, 32768));
+ VoxelArea v2(v3s16(32493, -32507, 32753), v3s16(32508, -32492, -32768));
UASSERTEQ(s32, v2.getVolume(), 4096);
}