aboutsummaryrefslogtreecommitdiff
path: root/test/common
diff options
context:
space:
mode:
authorJohannes Schickel2015-01-04 21:22:43 +0100
committerJohannes Schickel2015-01-04 21:22:43 +0100
commitba228f2bea145f6f8c6d575affc8efac4ed5e87f (patch)
tree0120b46aba6118edebfb60c5cc5fd899c8fa5bf6 /test/common
parent64bad2ec4a2bfe9d607883ca06df03279ba83943 (diff)
downloadscummvm-rg350-ba228f2bea145f6f8c6d575affc8efac4ed5e87f.tar.gz
scummvm-rg350-ba228f2bea145f6f8c6d575affc8efac4ed5e87f.tar.bz2
scummvm-rg350-ba228f2bea145f6f8c6d575affc8efac4ed5e87f.zip
TEST: Fix another typo in uint64 endian tests.
Diffstat (limited to 'test/common')
-rw-r--r--test/common/memoryreadstream.h2
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);