From 38339571d1b8fdab39c414376cb486a75ca5ed85 Mon Sep 17 00:00:00 2001 From: Naios Date: Sun, 9 Aug 2015 16:46:43 +0200 Subject: [PATCH] adapt tests --- test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.cpp b/test.cpp index 274a4dd..b622376 100644 --- a/test.cpp +++ b/test.cpp @@ -76,13 +76,13 @@ TEST_CASE("CrossForward tests", "[CrossForward]") std::unique_ptr&>::value, "cross_forward returns wrong type!"); - SECTION("CrossForward - forward l-value references") + SECTION("forward l-value references") { extract(con); REQUIRE(con.ptr.get()); } - SECTION("CrossForward - forward r-value references") + SECTION("forward r-value references") { extract(std::move(con)); REQUIRE_FALSE(con.ptr.get());