Char-Array Unit Test: Prune Duplicate Check

Identified by [at]atgeirr.
This commit is contained in:
Bård Skaflestad
2018-07-05 16:28:37 +02:00
parent 387be05c77
commit 1695dfe78b

View File

@@ -32,14 +32,6 @@ BOOST_AUTO_TEST_CASE (Basic_Operations)
BOOST_CHECK_EQUAL(s2.c_str(), std::string{"Inj-1 "});
}
// Move Construction
{
const auto s1 = Opm::RestartIO::Helpers::CharArrayNullTerm<8>{"Inj-1"};
const auto s2 = s1;
BOOST_CHECK_EQUAL(s2.c_str(), std::string{"Inj-1 "});
}
// Move Construction
{
auto s1 = Opm::RestartIO::Helpers::CharArrayNullTerm<8>{"Inj-1"};