From c76f6019e3fd3d553fb405868ef8b152eac9affd Mon Sep 17 00:00:00 2001 From: David Cooper Date: Fri, 14 Apr 2017 16:31:46 -0400 Subject: [PATCH] Fix typo Missing "/" in second call to testssl.sh --- t/02_http.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/02_http.t b/t/02_http.t index e33aeb7..8ef1fd2 100644 --- a/t/02_http.t +++ b/t/02_http.t @@ -33,7 +33,7 @@ cmp_ok($modedhtml, "eq", $okout, "HTML file matches terminal output"); $tests++; pass("Running testssl.sh against badssl.com with --debug 4 to create HTML output (may take 2~3 minutes)"); $tests++; # Redirect stderr to /dev/null in order to avoid some unexplained "date: invalid date" error messages -my $debugout = `TERM_WIDTH=120 .testssl.sh --color 0 --debug 4 --htmlfile tmp.html badssl.com 2> /dev/null`; +my $debugout = `TERM_WIDTH=120 ./testssl.sh --color 0 --debug 4 --htmlfile tmp.html badssl.com 2> /dev/null`; my $debughtml = `cat tmp.html`; unlink 'tmp.html';