Skip to content

Commit

Permalink
fix(objectionary#3529): snippet with current runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Nov 25, 2024
1 parent 81a5f6c commit 9b86bc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eo-runtime/src/test/java/integration/SnippetIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ void runsAllSnippets(final String yml, final @Mktmp Path temp) throws IOExceptio
f.properties()
.set("project.build.sourceEncoding", StandardCharsets.UTF_8.name())
.set("project.reporting.outputEncoding", StandardCharsets.UTF_8.name());
f.files().file("src/main/eo").save(
Paths.get(System.getProperty("user.dir")).resolve("src/main/eo")
f.files().file("src/main").save(
Paths.get(System.getProperty("user.dir")).resolve("src/main")
);
f.files()
.file(String.format("src/main/eo/%s", file))
Expand Down

0 comments on commit 9b86bc4

Please sign in to comment.