diff options
Diffstat (limited to 'src/test/java/org')
| -rw-r--r-- | src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java b/src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java index 354cb08..e892cd9 100644 --- a/src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java +++ b/src/test/java/org/zwobble/hobgoblin/compiler/ExampleTests.java @@ -4,6 +4,7 @@ import org.junit.jupiter.api.DynamicTest; import org.junit.jupiter.api.TestFactory; import java.io.IOException; +import java.util.List; import java.util.stream.Stream; public class ExampleTests { @@ -17,6 +18,6 @@ public class ExampleTests { } private void runTest(ExampleSet exampleSet) throws IOException { - HobgoblinCompiler.compile(exampleSet.path()); + HobgoblinCompiler.compile(exampleSet.path(), List.of()); } } |
