aboutsummaryrefslogtreecommitdiff
path: root/test/common/endian.h
diff options
context:
space:
mode:
authorJohannes Schickel2015-01-04 20:58:19 +0100
committerJohannes Schickel2015-01-04 21:09:32 +0100
commitdaa8fca001c0eddd5b0856d60aa7ecd59c7d6acc (patch)
tree376671be88a82ecf286dd92662b31b900209a571 /test/common/endian.h
parenteb4d1a69255b06f93c497aabd9cf950bfe0756ec (diff)
downloadscummvm-rg350-daa8fca001c0eddd5b0856d60aa7ecd59c7d6acc.tar.gz
scummvm-rg350-daa8fca001c0eddd5b0856d60aa7ecd59c7d6acc.tar.bz2
scummvm-rg350-daa8fca001c0eddd5b0856d60aa7ecd59c7d6acc.zip
TEST: Fix uint64 endian related test code.
This does not fix the actual implementation issues which are present right now!
Diffstat (limited to 'test/common/endian.h')
-rw-r--r--test/common/endian.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/common/endian.h b/test/common/endian.h
index 08e93e41ef..065b6997fc 100644
--- a/test/common/endian.h
+++ b/test/common/endian.h
@@ -19,7 +19,7 @@ class EndianTestSuite : public CxxTest::TestSuite
void test_READ_LE_UINT64() {
const byte data[8] = {0x12, 0x34, 0x56, 0x78, 0x9A, 0xBC, 0xDE, 0xFF};
uint64 value = READ_LE_UINT64(data);
- TS_ASSERT_EQUALS(value, 0xFFEDCBA978563412ULL);
+ TS_ASSERT_EQUALS(value, 0xFFDEBC9A78563412ULL);
}
void test_READ_BE_UINT32() {