pass by reference

This commit is contained in:
Erik Frojdh
2019-10-01 14:31:00 +02:00
parent b4f3c0586f
commit 5de5884341
2 changed files with 5 additions and 5 deletions

View File

@ -120,7 +120,6 @@ TEST_CASE("string to std::chrono::duration", "[support]") {
REQUIRE(StringTo<ns>("150ns") == ns(150));
REQUIRE(StringTo<ns>("150s") == s(150));
REQUIRE(StringTo<s>("3 s") == s(3));
REQUIRE_THROWS(StringTo<ns>("5xs"));
REQUIRE_THROWS(StringTo<ns>("asvn"));
}