diff options
| -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"); |
