summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorljfa-ag <ljfa-ag@web.de>2015-08-05 14:01:20 +0200
committerljfa-ag <ljfa-ag@web.de>2015-08-05 14:01:20 +0200
commit51553817630748b1f8ca342db59b0834032222cb (patch)
treeb2011782da6841f35fa52e5a0ca9b033d01b0588
parent43842d2246731a1fab79d9326bd5bec8098505d1 (diff)
downloadProject-Tick-51553817630748b1f8ca342db59b0834032222cb.tar.gz
Project-Tick-51553817630748b1f8ca342db59b0834032222cb.zip
Fix read_test
-rw-r--r--test/io/read_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/io/read_test.cpp b/test/io/read_test.cpp
index 78a6ea345f..a2c6b48844 100644
--- a/test/io/read_test.cpp
+++ b/test/io/read_test.cpp
@@ -123,7 +123,7 @@ void test_read_bigtest()
tag_byte_array byteArrayTest;
for(int n = 0; n < 1000; ++n)
byteArrayTest.push_back((n*n*255 + n*7) % 100);
- ASSERT(comp.at("byteArrayTest") == byteArrayTest);
+ ASSERT(comp.at("byteArrayTest (the first 1000 values of (n*n*255+n*7)%100, starting with n=0 (0, 62, 34, 16, 8, ...))") == byteArrayTest);
ASSERT(comp.at("stringTest") == tag_string("HELLO WORLD THIS IS A TEST STRING \u00C5\u00C4\u00D6!"));