diff options
Diffstat (limited to 'tests/common.lua')
-rw-r--r-- | tests/common.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/common.lua b/tests/common.lua index 156f882..47e3f56 100644 --- a/tests/common.lua +++ b/tests/common.lua | |||
@@ -231,7 +231,9 @@ end | |||
231 | function run_test_group(testgroup, tests) | 231 | function run_test_group(testgroup, tests) |
232 | local function run_config(configname, func) | 232 | local function run_config(configname, func) |
233 | local success, msg = pcall(func) | 233 | local success, msg = pcall(func) |
234 | print(string.format("==> Config %s: %s", configname, msg)) | 234 | if msg then |
235 | print(string.format("==> Config %s: %s", configname, msg)) | ||
236 | end | ||
235 | print() | 237 | print() |
236 | end | 238 | end |
237 | 239 | ||