1
0
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:
Niels Lohmann
2017-04-08 23:39:17 +02:00
parent d62d48fc48
commit 6f99d5b2e9
2 changed files with 2 additions and 12 deletions

View File

@ -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);
}
}
}