Skip to content

Commit

Permalink
Put the . in the extension
Browse files Browse the repository at this point in the history
Co-authored-by: Markus Scherer <[email protected]>
  • Loading branch information
eggrobin and markusicu authored May 30, 2024
1 parent 4ce8972 commit 0e65436
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,7 @@ public static int testInvariants(String inputFile, boolean doRange) throws IOExc
+ (inputFile.equals(DEFAULT_FILE)
? ""
: "-" + inputFile.split("\\.")[0])
+ "."
+ (doHtml ? "html" : "txt"))) {
+ (doHtml ? ".html" : ".txt"))) {
final StringWriter writer = new StringWriter();
try (PrintWriter out3 = new PrintWriter(writer)) {
out = out3;
Expand Down

0 comments on commit 0e65436

Please sign in to comment.