From 44adfb4be597492eb2ec6b25e1947ac20517bf52 Mon Sep 17 00:00:00 2001 From: Snaipe Date: Thu, 14 Jan 2016 15:46:06 +0100 Subject: [PATCH] Fixed description not being printed with dashes --- src/log/normal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/log/normal.c b/src/log/normal.c index dc7b63e..300266e 100644 --- a/src/log/normal.c +++ b/src/log/normal.c @@ -96,7 +96,7 @@ void normal_log_pre_init(struct criterion_test *test) { test->name); if (test->data->description) - criterion_pinfo(CRITERION_PREFIX_RUN, _(msg_desc), + criterion_pinfo(CRITERION_PREFIX_DASHES, _(msg_desc), test->data->description); }