diff options
Diffstat (limited to 'test/common')
-rw-r--r-- | test/common/endian.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/common/endian.h b/test/common/endian.h index f083d1248c..08e93e41ef 100644 --- a/test/common/endian.h +++ b/test/common/endian.h @@ -11,13 +11,13 @@ class EndianTestSuite : public CxxTest::TestSuite } void test_READ_BE_UINT64() { - const char data[8] = {0x12, 0x34, 0x56, 0x78, 0x9A, 0xBC, 0xDE, 0xFF}; + const byte data[8] = {0x12, 0x34, 0x56, 0x78, 0x9A, 0xBC, 0xDE, 0xFF}; uint64 value = READ_BE_UINT64(data); TS_ASSERT_EQUALS(value, 0x123456789ABCDEFFULL); } void test_READ_LE_UINT64() { - const char data[8] = {0x12, 0x34, 0x56, 0x78, 0x9A, 0xBC, 0xDE, 0xFF}; + const byte data[8] = {0x12, 0x34, 0x56, 0x78, 0x9A, 0xBC, 0xDE, 0xFF}; uint64 value = READ_LE_UINT64(data); TS_ASSERT_EQUALS(value, 0xFFEDCBA978563412ULL); } |