Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
sizeofvoid committed Sep 13, 2024
1 parent 5b1a0fa commit c9ccaa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/fanotify_controller_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ TEST_CASE("EventOperatorTest")
CHECK_EQ((Event::all & Event::close_write), Event::close_write);
CHECK_EQ((Event::all & Event::moved_from), Event::moved_from);
CHECK_EQ((Event::move & Event::moved_from), Event::moved_from);
CHECK(!((Event::move & Event::open) != Event::open));
CHECK((Event::move & Event::open) != Event::open);
CHECK_EQ(toString(Event::access), std::string("access"));
}

Expand Down

0 comments on commit c9ccaa9

Please sign in to comment.