Small fix in test duration output
This commit is contained in:
parent
148dc60d40
commit
1c550d7168
1 changed files with 1 additions and 1 deletions
|
|
@ -106,7 +106,7 @@ int main(int argc, char ** argv)
|
||||||
auto start = clock::now();
|
auto start = clock::now();
|
||||||
psemek::test::tests[name](ctx);
|
psemek::test::tests[name](ctx);
|
||||||
auto end = clock::now();
|
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;
|
++success;
|
||||||
}
|
}
|
||||||
catch (psemek::test::failure const & e)
|
catch (psemek::test::failure const & e)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue