fix for MSVC
This commit is contained in:
parent
01386b3977
commit
c9e5d56c9c
1 changed files with 1 additions and 1 deletions
|
@ -749,7 +749,7 @@ TEST_CASE("parser class")
|
|||
{
|
||||
SECTION("from std::vector")
|
||||
{
|
||||
std::vector<uint8_t> v = {'t', 'r', 'u', 'e'};
|
||||
std::vector<uint8_t> v = {'t', 'r', 'u', 'e', '\0'};
|
||||
CHECK (json::parser(std::begin(v), std::end(v)).parse() == json(true));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue