Skip to content

Commit 9b795df

Browse files
authored
Merge pull request #2839 from testssl/no_fulloutput@32_isHTML_valid
do not output the whole output
2 parents 137c7e2 + c6062a2 commit 9b795df

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

t/32_isHTML_valid.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ $edited_html =~ s/'/'/g;
4848

4949
$diff = diff \$edited_html, \$out;
5050

51-
cmp_ok($edited_html, "eq", $out, "Checking if HTML file matches terminal output") or
51+
ok($edited_html eq $out, "Checking if HTML file matches terminal output") or
5252
diag ("\n%s\n", "$diff");
5353

5454
$tests++;
@@ -82,7 +82,7 @@ $debughtml =~ s/.*Using bash .*\n//g;
8282

8383
$diff = diff \$debughtml, \$html;
8484

85-
cmp_ok($debughtml, "eq", $html, "Checking if HTML file created with --debug 4 matches HTML file created without --debug") or
85+
ok($debughtml eq $html, "Checking if HTML file created with --debug 4 matches HTML file created without --debug") or
8686
diag ("\n%s\n", "$diff");
8787
$tests++;
8888

0 commit comments

Comments
 (0)