diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-27 11:48:01 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-27 11:48:01 +0100 |
| commit | ae81e78090e8079506e75e6ddbdb32231ed83c2d (patch) | |
| tree | 65b0d73944d42d9112ac823037f0afa91a30fbc5 | |
| parent | dbb9a8c216bc56317a4fcb278ec860be29d5c2d7 (diff) | |
fix unit test name.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -rw-r--r-- | test/rope_test/crope.pred.test.cpp | 4 |
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 43b7c28..0bf5fbc 100644 --- a/test/rope_test/crope.pred.test.cpp +++ b/test/rope_test/crope.pred.test.cpp @@ -10,7 +10,7 @@ #define BOOST_TEST_MODULE crope_pred #include <boost/test/included/unit_test.hpp> -BOOST_AUTO_TEST_CASE(allocator_should_succeed_in_empty_pred) +BOOST_AUTO_TEST_CASE(rope_should_succeed_in_empty_pred) { auto rope = ocl::tproc::crope(""); auto it = ocl::tproc::rope::find(rope.cbegin(), rope.cend(), ocl::tproc::rope::exact_pred("foo")); @@ -18,7 +18,7 @@ BOOST_AUTO_TEST_CASE(allocator_should_succeed_in_empty_pred) BOOST_TEST(it == rope.cend()); } -BOOST_AUTO_TEST_CASE(allocator_should_not_succeed_in_empty_pred) +BOOST_AUTO_TEST_CASE(rope_should_not_succeed_in_empty_pred) { auto rope = ocl::tproc::crope("foobar"); |
