fix silly typo

This commit is contained in:
ToruNiina
2018-12-16 21:13:21 +09:00
parent c2e733a65d
commit 19524dbc4b

View File

@@ -122,7 +122,7 @@ BOOST_AUTO_TEST_CASE(test_get_exact)
toml::value v2(54);
toml::get<toml::value>(v1) = v2;
BOOST_CHECK(v2 == toml::get<toml::table>(v1));
BOOST_CHECK(v2 == toml::get<toml::value>(v1));
}
}