Skip to content

Commit 1156b18

Browse files
committed
fix(StepDefinition): escape slashes in DELETE endpoint step definition
1 parent 7dd01ae commit 1156b18

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/feature/StepDefinition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public void theClientCallToGetRandomUsersWithPageAndSize(int page, int size) {
8989
executeGet("/random-users?page=" + page + "&size=" + size);
9090
}
9191

92-
@When("the client call to DELETE \/random-users\/{int}")
92+
@When("the client call to DELETE \\/random-users\\/{int}")
9393
public void theClientCallToDeleteRandomUser(int id) {
9494
executeDelete("/random-users/" + id);
9595
}

0 commit comments

Comments
 (0)