Change the test for json parse errors to work with libc++

libc++ is of the opinion that "123eee" is a well-formed double equal to 0.
This commit is contained in:
Thomas Goyne 2012-11-07 08:59:50 -08:00
parent ae231ce5a5
commit 6f05d4b466

View file

@ -326,7 +326,7 @@ TEST_F(lagi_cajun, ReaderParserErrors) {
std::istringstream missing_comma("[1 2]");
EXPECT_THROW(json::Reader::Read(ue, missing_comma), json::Exception);
std::istringstream garbage_after_number("123eee");
std::istringstream garbage_after_number("123!");
EXPECT_THROW(json::Reader::Read(ue, garbage_after_number), json::Exception);
std::istringstream unexpected_eof("[");