Skip to content

Commit

Permalink
#100 remove var
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Grzeslowski authored and kbuntrock committed Jan 10, 2024
1 parent 5c48c26 commit d759c1b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void initTest() {
}

protected void checkGenerationResult(final String expectedFilePath, final File generatedFile) throws IOException {
var expected = this.getClass().getClassLoader().getResourceAsStream(expectedFilePath);
InputStream expected = this.getClass().getClassLoader().getResourceAsStream(expectedFilePath);
assertThat(new FileInputStream(generatedFile)).hasSameContentAs(expected);
}

Expand Down

0 comments on commit d759c1b

Please sign in to comment.