WIP tap param rename

This commit is contained in:
Danny Robson 2016-07-28 14:16:42 +10:00
parent 1e31f5daff
commit b44e6b8cd7

View File

@ -48,9 +48,9 @@ void
util::TAP::logger::expect (const std::function<bool(Args...)> &test, Args&&... args, const char (&fmt)[N])
{
try {
expect (test (std::forward<Args> (args)...), msg);
expect (test (std::forward<Args> (args)...), fmt);
} catch (...) {
expect (false, msg);
expect (false, fmt);
}
}