From d2247349a63cece8b9b3e7eeeff382bcfb1eb436 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 27 Dec 2025 10:13:24 +0100 Subject: fix: crope.pred.test.cpp: update pred test. Signed-off-by: Amlal El Mahrouss --- test/rope_test/crope.pred.test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/rope_test/crope.pred.test.cpp b/test/rope_test/crope.pred.test.cpp index fe82d78..a126144 100644 --- a/test/rope_test/crope.pred.test.cpp +++ b/test/rope_test/crope.pred.test.cpp @@ -13,7 +13,7 @@ BOOST_AUTO_TEST_CASE(allocator_should_succeed_in_empty_pred) { auto rope = ocl::tproc::crope(""); - auto it = ocl::tproc::find(rope.cbegin(), rope.cend(), ocl::tproc::exact_pred("foo")); + auto it = ocl::tproc::rope::find(rope.cbegin(), rope.cend(), ocl::tproc::rope::exact_pred("foo")); BOOST_TEST(it == rope.cend()); } @@ -22,7 +22,7 @@ BOOST_AUTO_TEST_CASE(allocator_should_not_succeed_in_empty_pred) { auto rope = ocl::tproc::crope("foobar"); - auto it = ocl::tproc::find(rope.cbegin(), rope.cend(), ocl::tproc::stars_with_pred("foo")); + auto it = ocl::tproc::rope::find(rope.cbegin(), rope.cend(), ocl::tproc::rope::stars_with_pred("foo")); BOOST_TEST(it != rope.cend()); } -- cgit v1.2.3