From 066b2246727520d5311598f2c8cca423617c2d10 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sun, 3 Apr 2016 21:51:47 +0100 Subject: tests: Fixed header files to comply with our code style --- tests/unit/curlcheck.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/unit') diff --git a/tests/unit/curlcheck.h b/tests/unit/curlcheck.h index db813db7c..0660e2bed 100644 --- a/tests/unit/curlcheck.h +++ b/tests/unit/curlcheck.h @@ -24,7 +24,7 @@ /* The fail macros mark the current test step as failed, and continue */ #define fail_if(expr, msg) \ if(expr) { \ - fprintf(stderr, "%s:%d Assertion '%s' met: %s\n" , \ + fprintf(stderr, "%s:%d Assertion '%s' met: %s\n", \ __FILE__, __LINE__, #expr, msg); \ unitfail++; \ } @@ -57,7 +57,7 @@ /* The abort macros mark the current test step as failed, and exit the test */ #define abort_if(expr, msg) \ if(expr) { \ - fprintf(stderr, "%s:%d Abort assertion '%s' met: %s\n" , \ + fprintf(stderr, "%s:%d Abort assertion '%s' met: %s\n", \ __FILE__, __LINE__, #expr, msg); \ unitfail++; \ goto unit_test_abort; \ -- cgit v1.2.3