diff options
Diffstat (limited to 'test/rope_test/crope.test.cpp')
| -rw-r--r-- | test/rope_test/crope.test.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/rope_test/crope.test.cpp b/test/rope_test/crope.test.cpp index 061da98..4565900 100644 --- a/test/rope_test/crope.test.cpp +++ b/test/rope_test/crope.test.cpp @@ -12,12 +12,13 @@ BOOST_AUTO_TEST_CASE(allocator_should_succeed_in_empty) { - auto rope = ocl::crope(""); + auto rope = ocl::tproc::crope(""); BOOST_TEST(rope.empty() == true); } BOOST_AUTO_TEST_CASE(allocator_should_not_succeed_in_empty) { - auto rope = ocl::crope("foobar"); + auto rope = ocl::tproc::crope("foobar"); + // rope += ".txt"; BOOST_TEST(rope.empty() == false); } |
