Skip to content

Commit

Permalink
Version 0.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed May 27, 2024
1 parent e19b8de commit b6995b0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/lib/bld/bld-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.extensions=com.uwyn.rife2:bld-pitest:0.9.7
bld.extensions=com.uwyn.rife2:bld-pitest:0.9.8
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES,MAVEN_LOCAL,RIFE2_SNAPSHOTS
bld.downloadLocation=
bld.sourceDirectories=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ <h2>Active mutators</h2>

<h2>Tests examined</h2>
<ul>
<li>com.example.ExamplesTest.[engine:junit-jupiter]/[class:com.example.ExamplesTest]/[method:verifyHello()] (9 ms)</li>
<li>com.example.ExamplesTest.[engine:junit-jupiter]/[class:com.example.ExamplesTest]/[method:verifyHello()] (11 ms)</li>
</ul>

<br/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ <h2>Active mutators</h2>

<h2>Tests examined</h2>
<ul>
<li>com.example.ExamplesTest.[engine:junit-jupiter]/[class:com.example.ExamplesTest]/[method:verifyHello()] (9 ms)</li>
<li>com.example.ExamplesTest.[engine:junit-jupiter]/[class:com.example.ExamplesTest]/[method:verifyHello()] (11 ms)</li>
</ul>

<br/>
Expand Down
2 changes: 1 addition & 1 deletion src/bld/java/rife/bld/extension/PitestOperationBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class PitestOperationBuild extends Project {
public PitestOperationBuild() {
pkg = "rife.bld.extension";
name = "PitestExtension";
version = version(0, 9, 8, "SNAPSHOT");
version = version(0, 9, 8);

javaRelease = 17;
downloadSources = true;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/rife/bld/extension/PitestOperationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ void avoidCallsTo() {
}

@Test
void checkAll() {
void checkAllParameters() {
var params = List.of(
"--argLine",
"--avoidCallsTo",
Expand Down

0 comments on commit b6995b0

Please sign in to comment.