Skip to content

Commit ec74d69

Browse files
Fix uses of std:: and mystl:: in unique_test
1 parent e64c1cc commit ec74d69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Test/algorithm_test.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1136,7 +1136,7 @@ TEST(unique_test)
11361136
std::unique(arr1, arr1 + 10);
11371137
mystl::unique(arr2, arr2 + 10);
11381138
std::unique(arr3, arr3 + 9, std::equal_to<int>());
1139-
std::unique(arr4, arr4 + 9, std::equal_to<int>());
1139+
mystl::unique(arr4, arr4 + 9, std::equal_to<int>());
11401140
EXPECT_CON_EQ(arr1, arr2);
11411141
EXPECT_CON_EQ(arr3, arr4);
11421142
}

0 commit comments

Comments
 (0)