1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-25 13:41:56 +03:00

fixed unit tests

This commit is contained in:
Niels
2016-08-17 21:31:59 +02:00
parent 5e67f7af01
commit a78eaa27b5
2 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ TEST_CASE("deserialization")
SECTION("from array")
{
uint8_t v[] = {'t', 'r', 'u', 'e'};
uint8_t v[] = {'t', 'r', 'u', 'e', '\0'};
CHECK(json::parse(std::begin(v), std::end(v)) == json(true));
}