summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-27 10:13:24 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-27 10:13:24 +0100
commitd2247349a63cece8b9b3e7eeeff382bcfb1eb436 (patch)
tree6353805958a9d91d275a04384eadc6fb953e547f
parentd9033363086aba59f67d805f09bad1e74d23acb5 (diff)
fix: crope.pred.test.cpp: update pred test.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
-rw-r--r--test/rope_test/crope.pred.test.cpp4
1 files 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());
}