From 93694fa67049368dd21e8500c8b1a71289cf9b44 Mon Sep 17 00:00:00 2001 From: I <1091761+wx257osn2@users.noreply.github.com> Date: Sun, 24 Jul 2022 10:54:35 +0900 Subject: [PATCH] cpplint doesn't like alternative tokens --- tests/unit/core/validator.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/core/validator.cc b/tests/unit/core/validator.cc index ce062ca750..412968f062 100644 --- a/tests/unit/core/validator.cc +++ b/tests/unit/core/validator.cc @@ -236,12 +236,12 @@ description = "Manifest Test library" { auto x = valid_profile(None, None); expect(x.is_ok()); - expect(not x.unwrap().has_value()); + expect(!x.unwrap().has_value()); } { auto x = valid_profile(None, false); expect(x.is_ok()); - expect(not x.unwrap().has_value()); + expect(!x.unwrap().has_value()); } { auto x = valid_profile(None, true);