We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 575e99a commit d34ed25Copy full SHA for d34ed25
src/main/resources/data.sql
@@ -5,5 +5,6 @@ VALUES ('10:00'),
5
('14:30'),
6
('16:00'),
7
('17:30'),
8
+ ('15:40'),
9
('19:00'),
10
('20:30');
src/test/java/roomescape/MissionStepTest.java
@@ -170,16 +170,16 @@ public class MissionStepTest {
170
.when().post("/times")
171
.then().log().all()
172
.statusCode(201)
173
- .header("Location", "/times/1");
+ .header("Location", "/times/10");
174
175
RestAssured.given().log().all()
176
.when().get("/times")
177
178
.statusCode(200)
179
- .body("size()", is(1));
+ .body("size()", is(10));
180
181
182
- .when().delete("/times/1")
+ .when().delete("/times/10")
183
184
.statusCode(204);
185
}
0 commit comments