Skip to content

Commit d9a225a

Browse files
committed
Cleaned up examples
1 parent ce56ed6 commit d9a225a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To run mutation tests and coverage, add the following to your build file:
1616
public void pit() throws Exception {
1717
new PitestOperation()
1818
.fromProject(this)
19-
.reportDir(Path.of("reports", "mutations").toString())
19+
.reportDir(Path.of("reports", "mutations"))
2020
.targetClasses(pkg + ".*")
2121
.targetTests(pkg + ".*")
2222
.verbose(true)

examples/src/bld/java/com/example/ExamplesBuild.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static void main(String[] args) {
4242
public void pit() throws Exception {
4343
new PitestOperation()
4444
.fromProject(this)
45-
.reportDir(Path.of("reports", "mutations").toString())
45+
.reportDir(Path.of("reports", "mutations"))
4646
.targetClasses(pkg + ".*")
4747
.targetTests(pkg + ".*")
4848
.verbose(true)

0 commit comments

Comments
 (0)