From b44e6b8cd7f24abe3128c820be1e8838e6c534c5 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Thu, 28 Jul 2016 14:16:42 +1000 Subject: [PATCH] WIP tap param rename --- tap.ipp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tap.ipp b/tap.ipp index d83507d2..b60055d0 100644 --- a/tap.ipp +++ b/tap.ipp @@ -48,9 +48,9 @@ void util::TAP::logger::expect (const std::function &test, Args&&... args, const char (&fmt)[N]) { try { - expect (test (std::forward (args)...), msg); + expect (test (std::forward (args)...), fmt); } catch (...) { - expect (false, msg); + expect (false, fmt); } }