Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit 2843154

Browse files
committed
test: isDisjoint -> IsDisjoint
1 parent 4099381 commit 2843154

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/util/set_util_test.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ TEST_F(SetUtilTests, DisjointTest) {
3030
// Check sorted sets
3131
std::set<int> setA{1, 2, 3, 4};
3232
std::set<int> setB{4, 5, 6, 7};
33-
EXPECT_FALSE(SetUtil::isDisjoint(setA, setB));
33+
EXPECT_FALSE(SetUtil::IsDisjoint(setA, setB));
3434

3535
std::set<int> setC{9, 8, 10};
36-
EXPECT_TRUE(SetUtil::isDisjoint(setA, setC));
36+
EXPECT_TRUE(SetUtil::IsDisjoint(setA, setC));
3737

3838
std::set<int> setD{4, 1, 3, 2};
39-
EXPECT_FALSE(SetUtil::isDisjoint(setB, setD));
39+
EXPECT_FALSE(SetUtil::IsDisjoint(setB, setD));
4040

4141
std::set<int> setE;
42-
EXPECT_TRUE(SetUtil::isDisjoint(setD, setE));
42+
EXPECT_TRUE(SetUtil::IsDisjoint(setD, setE));
4343
}
4444

4545
} // namespace test

0 commit comments

Comments
 (0)