🔨 fixed test case
One test case for CBOR and MessagePack assumed little endianess.
This commit is contained in:
parent
d62d48fc48
commit
6f99d5b2e9
2 changed files with 2 additions and 12 deletions
|
@ -727,14 +727,9 @@ TEST_CASE("CBOR")
|
||||||
const auto result = json::to_cbor(j);
|
const auto result = json::to_cbor(j);
|
||||||
CHECK(result == expected);
|
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
|
// roundtrip
|
||||||
CHECK(json::from_cbor(result) == j);
|
CHECK(json::from_cbor(result) == j);
|
||||||
|
CHECK(json::from_cbor(result) == v);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -676,14 +676,9 @@ TEST_CASE("MessagePack")
|
||||||
const auto result = json::to_msgpack(j);
|
const auto result = json::to_msgpack(j);
|
||||||
CHECK(result == expected);
|
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
|
// roundtrip
|
||||||
CHECK(json::from_msgpack(result) == j);
|
CHECK(json::from_msgpack(result) == j);
|
||||||
|
CHECK(json::from_msgpack(result) == v);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue