Skip to content

Commit 6cd553e

Browse files
committed
Change codestart path due to conflict
Signed-off-by: Matheus Cruz <[email protected]>
1 parent 2ae7492 commit 6cd553e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

core/integration-tests/src/test/resources/__snapshots__/FlowCodestartTest/testContent/src_main_java_ilove_quark_us_HelloResource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import java.util.Map;
1010
import java.util.concurrent.CompletionStage;
1111

12-
@Path("/hello")
12+
@Path("/hello-flow")
1313
@ApplicationScoped
1414
public class HelloResource {
1515

core/integration-tests/src/test/resources/__snapshots__/FlowCodestartTest/testContent/src_test_java_ilove_quark_us_HelloResourceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class HelloResourceTest {
1212
@Test
1313
void hello_returns_hello_world() {
1414
given()
15-
.when().get("/hello")
15+
.when().get("/hello-flow")
1616
.then()
1717
.statusCode(200)
1818
.body("message", equalTo("hello world!"));

core/runtime/src/main/codestarts/quarkus/quarkus-flow-codestart/java/src/main/java/org/acme/HelloResource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import java.util.Map;
1010
import java.util.concurrent.CompletionStage;
1111

12-
@Path("/hello")
12+
@Path("/hello-flow")
1313
@ApplicationScoped
1414
public class HelloResource {
1515

core/runtime/src/main/codestarts/quarkus/quarkus-flow-codestart/java/src/test/java/org/acme/HelloResourceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class HelloResourceTest {
1212
@Test
1313
void hello_returns_hello_world() {
1414
given()
15-
.when().get("/hello")
15+
.when().get("/hello-flow")
1616
.then()
1717
.statusCode(200)
1818
.body("message", equalTo("hello world!"));

0 commit comments

Comments
 (0)