diff options
-rw-r--r-- | slicer/test/serializers.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slicer/test/serializers.cpp b/slicer/test/serializers.cpp index 53c6965..d63651d 100644 --- a/slicer/test/serializers.cpp +++ b/slicer/test/serializers.cpp @@ -636,6 +636,8 @@ BOOST_AUTO_TEST_CASE(simple_complete_validator) xmlpp::Document *>("isodate.xml", readXml, writeXml, freeXml); } +BOOST_AUTO_TEST_SUITE_END(); + BOOST_AUTO_TEST_CASE(missingConversion) { auto in = json::parseValue(R"J({"conv": "2016-06-30 12:34:56"})J"); @@ -658,8 +660,6 @@ BOOST_AUTO_TEST_CASE(conversion) BOOST_REQUIRE_EQUAL("2016-06-30 12:34:56", std::get<json::String>(std::get<json::Object>(v)["conv"])); } -BOOST_AUTO_TEST_SUITE_END(); - BOOST_AUTO_TEST_CASE(customerModelPartCounters) { BOOST_REQUIRE_EQUAL(21, TestModule::completions); |