Parcourir la source

[5017] Fixed one unit-test.

Tomek Mrugalski il y a 8 ans
Parent
commit
bc6502b3ca
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      src/bin/dhcp4/tests/parser_unittest.cc

+ 3 - 3
src/bin/dhcp4/tests/parser_unittest.cc

@@ -326,13 +326,13 @@ TEST(ParserTest, errors) {
     // JSON keywords
     // JSON keywords
     testError("{ \"foo\": True }",
     testError("{ \"foo\": True }",
               Parser4Context::PARSER_JSON,
               Parser4Context::PARSER_JSON,
-              "<string>:1.10-13: JSON true reserved keyword is lower case only");
+              "<string>:1.10: Invalid character: T");
     testError("{ \"foo\": False }",
     testError("{ \"foo\": False }",
               Parser4Context::PARSER_JSON,
               Parser4Context::PARSER_JSON,
-              "<string>:1.10-14: JSON false reserved keyword is lower case only");
+              "<string>:1.10: Invalid character: F");
     testError("{ \"foo\": NULL }",
     testError("{ \"foo\": NULL }",
               Parser4Context::PARSER_JSON,
               Parser4Context::PARSER_JSON,
-              "<string>:1.10-13: JSON null reserved keyword is lower case only");
+              "<string>:1.10: Invalid character: N");
     testError("{ \"foo\": Tru }",
     testError("{ \"foo\": Tru }",
               Parser4Context::PARSER_JSON,
               Parser4Context::PARSER_JSON,
               "<string>:1.10: Invalid character: T");
               "<string>:1.10: Invalid character: T");