Skip to content

Commit e43db6b

Browse files
fix(tests): fixing doesContains not being renamed correctly in tests directory
1 parent 9f3c515 commit e43db6b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/runtime/core/tests/container/Array.tests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,8 @@ TEST_CASE("Array - Operations and Search Algorithms", "[container][Array]")
237237

238238
SECTION("contains()")
239239
{
240-
REQUIRE(arr.doesContains(20) == true);
241-
REQUIRE(arr.doesContains(99) == false);
240+
REQUIRE(arr.contains(20) == true);
241+
REQUIRE(arr.contains(99) == false);
242242
}
243243

244244
SECTION("count()")

0 commit comments

Comments
 (0)