diff options
Diffstat (limited to 'test/common')
-rw-r--r-- | test/common/memoryreadstream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/common/memoryreadstream.h b/test/common/memoryreadstream.h index 79c4079e9b..3e1472f408 100644 --- a/test/common/memoryreadstream.h +++ b/test/common/memoryreadstream.h @@ -82,7 +82,7 @@ class MemoryReadStreamTestSuite : public CxxTest::TestSuite { TS_ASSERT_EQUALS(ms.pos(), 2); TS_ASSERT_EQUALS(ms.readUint32BE(), 0x03040506UL); TS_ASSERT_EQUALS(ms.pos(), 6); - TS_ASSERT_EQUALS(ms.readUint64LE(), 0x0708090A0B0C0D0EULL); + TS_ASSERT_EQUALS(ms.readUint64BE(), 0x0708090A0B0C0D0EULL); TS_ASSERT_EQUALS(ms.pos(), 14); TS_ASSERT_EQUALS(ms.readByte(), 0x0F); TS_ASSERT_EQUALS(ms.pos(), 15); |