diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-02-20 12:14:31 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-02-20 12:14:31 +0000 |
commit | 2c80bcbc812d7906e84ea90bc351a85ebefbf910 (patch) | |
tree | fd4f9f57c1e727cdde515cf7e1edbe16c293bf6c /tests | |
parent | b60dbfa9e996ae032391020bfa4983ca1e36e2d4 (diff) |
made the non-matching error code output nicer since we know it is a number
and the string contains a newline...
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 457b79d2a..a868b2c3a 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2318,7 +2318,7 @@ sub singletest { } else { if(!$short) { - printf "\ncurl returned $cmdres, %s was expected\n", $errorcode; + printf "\ncurl returned $cmdres, %d was expected\n", $errorcode; } logmsg " exit FAILED\n"; return 1; |