aboutsummaryrefslogtreecommitdiff
path: root/test/common/endian.h
diff options
context:
space:
mode:
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() {