Skip to content

Commit

Permalink
Add missing new InMemoryExecutionContext()
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Dec 13, 2023
1 parent 0f7b99b commit b0aae8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion authoring-recipes/multiple-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ For instance, if you wanted to default to using `junit-4.13.2` and `mockito-core
public void defaults(RecipeSpec spec) {
spec
.parser(JavaParser.fromJavaVersion()
.classpathFromResources("junit-4.13.2", "mockito-core-3.12.4"));
.classpathFromResources(new InMemoryExecutionContext(), "junit-4.13.2", "mockito-core-3.12.4"));
}
```

Expand Down

0 comments on commit b0aae8a

Please sign in to comment.