From ba228f2bea145f6f8c6d575affc8efac4ed5e87f Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sun, 4 Jan 2015 21:22:43 +0100 Subject: TEST: Fix another typo in uint64 endian tests. --- test/common/memoryreadstream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/common') 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); -- cgit v1.2.3