summaryrefslogtreecommitdiff
path: root/test/nbttest.cpp
diff options
context:
space:
mode:
authorljfa-ag <ljfa-ag@web.de>2015-06-28 16:54:16 +0200
committerljfa-ag <ljfa-ag@web.de>2015-06-28 16:54:16 +0200
commite040454ca3ba94b4a4c13c51a2cb3dd5cba8749b (patch)
treee1d5a059411aa777798de1f5d2e271e508e48df3 /test/nbttest.cpp
parent6c1c90d668915ce698fe71a53891986e82d4af7a (diff)
downloadProject-Tick-e040454ca3ba94b4a4c13c51a2cb3dd5cba8749b.tar.gz
Project-Tick-e040454ca3ba94b4a4c13c51a2cb3dd5cba8749b.zip
Add operator== and equals for tag
Diffstat (limited to 'test/nbttest.cpp')
-rw-r--r--test/nbttest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/nbttest.cpp b/test/nbttest.cpp
index b77c9b85bf..a596259050 100644
--- a/test/nbttest.cpp
+++ b/test/nbttest.cpp
@@ -112,7 +112,7 @@ void test_tag_compound()
{"baz", -2.0},
{"quux", tag_compound{{"Hello", "World"}, {"zero", 0}}}
}*/;
- //ASSERT(comp == comp2);
+ ASSERT(comp == comp2);
ASSERT(comp != (const tag_compound&)comp2["quux"]);
ASSERT(comp != comp2["quux"]);
}