mirror of
https://github.com/nlohmann/json.git
synced 2025-07-25 13:41:56 +03:00
🔨 fixed test case
One test case for CBOR and MessagePack assumed little endianess.
This commit is contained in:
@ -676,14 +676,9 @@ TEST_CASE("MessagePack")
|
||||
const auto result = json::to_msgpack(j);
|
||||
CHECK(result == expected);
|
||||
|
||||
// restore value (reverse array for endianess)
|
||||
double restored;
|
||||
std::reverse(expected.begin(), expected.end());
|
||||
memcpy(&restored, expected.data(), sizeof(double));
|
||||
CHECK(restored == v);
|
||||
|
||||
// roundtrip
|
||||
CHECK(json::from_msgpack(result) == j);
|
||||
CHECK(json::from_msgpack(result) == v);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user