Skip to content

Commit

Permalink
Merge pull request #38 from artsok/fix-test
Browse files Browse the repository at this point in the history
fix test
  • Loading branch information
artsok authored Jun 19, 2019
2 parents 7e27863 + d308d54 commit 9add868
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/test/java/io/github/artsok/ReRunnerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void reRunTest() throws IOException {

@Test
void runReRunTest() throws Exception {
assertTestResults("reRunTest", false, 3, 2, 0);
assertTestResults("reRunTest", false, 4, 3, 0);
}

/**
Expand All @@ -80,7 +80,7 @@ public void reRunTest2() throws IOException {

@Test
void runReRun2Test() throws Exception {
assertTestResults("reRunTest2", false, 2, 1, 0);
assertTestResults("reRunTest2", false, 3, 2, 0);
}

/**
Expand All @@ -98,7 +98,7 @@ public void reRunTest3() throws IOException {

@Test
void runReRun3Test() throws Exception {
assertTestResults("reRunTest3", false, 10, 9, 0);
assertTestResults("reRunTest3", false, 11, 10, 0);
}

@DisplayName("Name for our test")
Expand Down Expand Up @@ -132,7 +132,7 @@ public void reRunTest6() {

@Test
void runReRunTest6() throws Exception {
assertTestResults("reRunTest6", false, 2, 1, 0);
assertTestResults("reRunTest6", false, 3, 2, 0);
}

@ProgrammaticTest
Expand All @@ -144,7 +144,7 @@ public void reRunTest7() {

@Test
void runReRunTest7() throws Exception {
assertTestResults("reRunTest7", false, 7, 6, 3);
assertTestResults("reRunTest7", false, 8, 7, 3);
}

@ProgrammaticTest
Expand Down

0 comments on commit 9add868

Please sign in to comment.