Skip to content

Commit

Permalink
Fix uses of std:: and mystl:: in unique_test
Browse files Browse the repository at this point in the history
  • Loading branch information
frederick-vs-ja authored Jan 13, 2023
1 parent e64c1cc commit ec74d69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Test/algorithm_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -1136,7 +1136,7 @@ TEST(unique_test)
std::unique(arr1, arr1 + 10);
mystl::unique(arr2, arr2 + 10);
std::unique(arr3, arr3 + 9, std::equal_to<int>());
std::unique(arr4, arr4 + 9, std::equal_to<int>());
mystl::unique(arr4, arr4 + 9, std::equal_to<int>());
EXPECT_CON_EQ(arr1, arr2);
EXPECT_CON_EQ(arr3, arr4);
}
Expand Down

0 comments on commit ec74d69

Please sign in to comment.