replace further alternative operators

parent 8d295235
...@@ -44,7 +44,7 @@ static int assert_counter; ...@@ -44,7 +44,7 @@ static int assert_counter;
using nlohmann::json; using nlohmann::json;
// the test assumes exceptions to work // the test assumes exceptions to work
#if not defined(JSON_NOEXCEPTION) #if !defined(JSON_NOEXCEPTION)
TEST_CASE("JSON_ASSERT(x)") TEST_CASE("JSON_ASSERT(x)")
{ {
SECTION("basic_json(first, second)") SECTION("basic_json(first, second)")
......
...@@ -314,7 +314,7 @@ void comments_helper(const std::string& s) ...@@ -314,7 +314,7 @@ void comments_helper(const std::string& s)
{ {
CAPTURE(json_with_comment) CAPTURE(json_with_comment)
CHECK_THROWS_AS(_ = json::parse(json_with_comment), json::parse_error); CHECK_THROWS_AS(_ = json::parse(json_with_comment), json::parse_error);
CHECK(not json::accept(json_with_comment)); CHECK(!json::accept(json_with_comment));
CHECK_NOTHROW(_ = json::parse(json_with_comment, nullptr, true, true)); CHECK_NOTHROW(_ = json::parse(json_with_comment, nullptr, true, true));
CHECK(json::accept(json_with_comment, true)); CHECK(json::accept(json_with_comment, true));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment