We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c1c531 commit 3ed1634Copy full SHA for 3ed1634
cluster/src/test/scala/api/http/benchmark/FilingSimulation.scala
@@ -57,6 +57,12 @@ class FilingSimulation extends Simulation {
57
.header("cfpb-hmda-institutions", "${institutionId}")
58
.bodyPart(RawFileBodyPart("file", "${fileName}"))
59
.check(status is 202))
60
+ .pause(10)
61
+ .exec(http("View edits")
62
+ .get("/institutions/${institutionId}/filings/2017/submissions/${submissionId}/edits")
63
+ .header("cfpb-hmda-institutions", "${institutionId}")
64
+ .check(status is 200)
65
+ .check(jsonPath("$.status.code") is "8"))
66
67
}
68
0 commit comments