summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/rope_test/crope.pred.test.cpp2
-rw-r--r--test/rope_test/crope.pred2.test.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/test/rope_test/crope.pred.test.cpp b/test/rope_test/crope.pred.test.cpp
index 5505462..cce52eb 100644
--- a/test/rope_test/crope.pred.test.cpp
+++ b/test/rope_test/crope.pred.test.cpp
@@ -35,7 +35,7 @@ BOOST_AUTO_TEST_CASE(rope_should_succeed_in_at)
BOOST_AUTO_TEST_CASE(rope_should_succeed_in_concat)
{
- auto rope = tproc::crope("The Quick Brown Fox Jumps Over The Lazy Dog");
+ auto rope = tproc::crope("The Quick Brown Fox Jumps Over The Lazy Dog");
std::unique_ptr<tproc::crope> new_elem = std::make_unique<tproc::crope>(", and Jumps again.");
rope.concat(new_elem.get());
diff --git a/test/rope_test/crope.pred2.test.cpp b/test/rope_test/crope.pred2.test.cpp
index 9b9b333..7587b86 100644
--- a/test/rope_test/crope.pred2.test.cpp
+++ b/test/rope_test/crope.pred2.test.cpp
@@ -19,11 +19,11 @@ using namespace boost;
BOOST_AUTO_TEST_CASE(rope_should_succeed_in_concat)
{
- auto rope = tproc::crope("Exact");
+ auto rope = tproc::crope("Exact");
auto next_rope = std::make_unique<tproc::crope>(" Sentence");
- auto rope_2 = rope.concat(next_rope.get());
+ auto rope_2 = rope.concat(next_rope.get());
std::cout << "Result: " << rope << std::endl;
- BOOST_TEST(rope.to_string() == "Exact Sentence");
+ BOOST_TEST(rope.to_string() == "Exact Sentence");
}