Small fix in test duration output

This commit is contained in:
Nikita Lisitsa 2020-11-29 12:31:45 +03:00
parent 148dc60d40
commit 1c550d7168

View file

@ -106,7 +106,7 @@ int main(int argc, char ** argv)
auto start = clock::now();
psemek::test::tests[name](ctx);
auto end = clock::now();
std::cout << "ok (" << psemek::util::pretty(end - start, std::chrono::milliseconds{1}) << ")" << std::endl;
std::cout << "ok " << psemek::util::pretty(end - start, std::chrono::milliseconds{1}) << std::endl;
++success;
}
catch (psemek::test::failure const & e)