Skip to content

Commit d749c8b

Browse files
committed
compilation fix
1 parent f1653a0 commit d749c8b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/LineGraphTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public void idempotentReadWrite() {
4646
for (final Path testFile : TEST_FILES) {
4747
Logger.info("Testing " + testFile);
4848
final String lineGraph = FileUtils.readUTF8(testFile);
49-
final List<DiffTree> diffTrees = LineGraphImport.fromLineGraph(lineGraph, IMPORT_OPTIONS);
49+
final List<DiffTree> diffTrees = LineGraphImport.fromLineGraph(lineGraph, testFile, IMPORT_OPTIONS);
5050
assertConsistencyForAll(diffTrees);
5151
final String lineGraphResult = exportDiffTreeToLineGraph(diffTrees);
5252
assertEqualFileContent(lineGraph, lineGraphResult);

0 commit comments

Comments
 (0)