remove old serialization support for WListManager

This commit is contained in:
Arne Morten Kvarving
2020-03-17 15:40:52 +01:00
parent 778f1cfb8e
commit 7389959b88
5 changed files with 7 additions and 53 deletions

View File

@@ -1643,7 +1643,7 @@ BOOST_AUTO_TEST_CASE(WList)
{
#ifdef HAVE_MPI
Opm::WList val1({"test1", "test2", "test3"});
auto val2 = PackUnpack(val1);
auto val2 = PackUnpack2(val1);
DO_CHECKS(WList)
#endif
}
@@ -1655,7 +1655,7 @@ BOOST_AUTO_TEST_CASE(WListManager)
Opm::WList wl({"test1", "test2", "test3"});
std::map<std::string,Opm::WList> data{{"test", wl}, {"test2", wl}};
Opm::WListManager val1(data);
auto val2 = PackUnpack(val1);
auto val2 = PackUnpack2(val1);
DO_CHECKS(WListManager)
#endif
}