Skip to content

Commit

Permalink
cpplint doesn't like alternative tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
wx257osn2 committed Jul 24, 2022
1 parent 529996a commit 93694fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/core/validator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 93694fa

Please sign in to comment.