Skip to content

Commit c9ccaa9

Browse files
committed
Fix test
1 parent 5b1a0fa commit c9ccaa9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/fanotify_controller_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ TEST_CASE("EventOperatorTest")
7777
CHECK_EQ((Event::all & Event::close_write), Event::close_write);
7878
CHECK_EQ((Event::all & Event::moved_from), Event::moved_from);
7979
CHECK_EQ((Event::move & Event::moved_from), Event::moved_from);
80-
CHECK(!((Event::move & Event::open) != Event::open));
80+
CHECK((Event::move & Event::open) != Event::open);
8181
CHECK_EQ(toString(Event::access), std::string("access"));
8282
}
8383

0 commit comments

Comments
 (0)