We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1653a0 commit d749c8bCopy full SHA for d749c8b
1 file changed
src/test/java/LineGraphTest.java
@@ -46,7 +46,7 @@ public void idempotentReadWrite() {
46
for (final Path testFile : TEST_FILES) {
47
Logger.info("Testing " + testFile);
48
final String lineGraph = FileUtils.readUTF8(testFile);
49
- final List<DiffTree> diffTrees = LineGraphImport.fromLineGraph(lineGraph, IMPORT_OPTIONS);
+ final List<DiffTree> diffTrees = LineGraphImport.fromLineGraph(lineGraph, testFile, IMPORT_OPTIONS);
50
assertConsistencyForAll(diffTrees);
51
final String lineGraphResult = exportDiffTreeToLineGraph(diffTrees);
52
assertEqualFileContent(lineGraph, lineGraphResult);
0 commit comments