Skip to content

Commit

Permalink
Fix failing HTTP DEV mode log checks
Browse files Browse the repository at this point in the history
  • Loading branch information
michalvavrik authored and fedinskiy committed Jun 1, 2023
1 parent 28c6833 commit 82bba48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void shouldDetectNewTests() {
// Modify Hello to Hola
app.modifyFile(HELLO_RESOURCE_JAVA, content -> content.replace(HELLO_IN_ENGLISH, HELLO_IN_SPANISH));
// Then the NoFunctionalTest should not have been executed as it's not affected, only HelloResourceTest
app.logs().assertContains("Running 1/1. Running: io.quarkus.ts.http.minimum.HelloResourceTest#HelloResourceTest");
app.logs().assertContains("Running 1/1. Running: #HelloResourceTest");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void shouldDetectNewTests() {
// Modify Hello to Hola
app.modifyFile(HELLO_RESOURCE_JAVA, content -> content.replace(HELLO_IN_ENGLISH, HELLO_IN_SPANISH));
// Then the NoFunctionalTest should not have been executed as it's not affected, only HelloResourceTest
app.logs().assertContains("Running 1/1. Running: io.quarkus.ts.http.minimum.HelloResourceTest#HelloResourceTest");
app.logs().assertContains("Running 1/1. Running: #HelloResourceTest");
}

@Test
Expand Down

0 comments on commit 82bba48

Please sign in to comment.