diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-24 11:41:44 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-24 11:41:44 +0100 |
| commit | 5d69778988ed44f62edbaaa4f95cf8dcdb0e8b45 (patch) | |
| tree | 2fd80dda4917dc02920895e500c10577fad3bbcd /test/rope_test/crope.test.cpp | |
| parent | 91af7e1b9b4427a3b1affd6eb100b4e5e10c9897 (diff) | |
feat! final API design for basic_rope.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'test/rope_test/crope.test.cpp')
| -rw-r--r-- | test/rope_test/crope.test.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/rope_test/crope.test.cpp b/test/rope_test/crope.test.cpp index e1885f4..f454e12 100644 --- a/test/rope_test/crope.test.cpp +++ b/test/rope_test/crope.test.cpp @@ -10,8 +10,7 @@ #define BOOST_TEST_MODULE crope #include <boost/test/included/unit_test.hpp> -BOOST_AUTO_TEST_CASE( allocator_should_succeed ) -{ - auto rope = ocl::crope("foo"); - BOOST_TEST( rope.empty() == false ); +BOOST_AUTO_TEST_CASE(allocator_should_succeed) { + auto rope = ocl::crope("foo"); + BOOST_TEST(rope.empty() == false); } |
