Skip to content

Commit

Permalink
Revert unnecessary debugging change to IntegrationTestSpec.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad committed Feb 28, 2023
1 parent 188b680 commit f83d41c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ public static void assertEqualTextFiles(final Reader resultReader, final Reader
final String expectedLine = expected.next();
final String actualLine = actual.next();
if ( !actualLine.equals(expectedLine) ) {
System.out.println( "Line number " + i + " (not counting comments) expected " +
logger.error( "Line number " + i + " (not counting comments) expected " +
expectedLine + " actual " + actualLine + '\n' +
"Expected :" + expectedLine + '\n' +
"Actual :" + actualLine + '\n'
Expand Down

0 comments on commit f83d41c

Please sign in to comment.