From 0d1210a24dbaa6559ce9421d87cce4cc1aec469b Mon Sep 17 00:00:00 2001 From: Snaipe Date: Tue, 4 Aug 2015 15:36:50 +0200 Subject: [PATCH] Fixed typo disabling pre_init logging --- src/runner.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/runner.c b/src/runner.c index db95f9f..6891515 100644 --- a/src/runner.c +++ b/src/runner.c @@ -211,8 +211,9 @@ static void run_test(struct criterion_global_stats *stats, stat_push_event(stats, suite_stats, test_stats, ev); switch (ev->kind) { case PRE_INIT: - report(PRE_INIT, test); break; + report(PRE_INIT, test); log(pre_init, test); + break; case PRE_TEST: report(PRE_TEST, test); log(pre_test, test);