Skip to content

Commit

Permalink
Fix tps pact test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
samanehsan committed Jan 17, 2024
1 parent 8066d7d commit 75542bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/bio/terra/pact/consumer/TpsPactTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ RequestResponsePact createPao(PactDslWithProvider builder) {
String snapshotId = UUID.randomUUID().toString();
return builder
.given("default")
.uponReceiving("create PAO with ID <uuid>")
.uponReceiving("create PAO for TDR snapshot")
.method("POST")
.path("/api/policy/v1alpha1/pao")
.body(
Expand Down Expand Up @@ -97,7 +97,7 @@ RequestResponsePact createPao(PactDslWithProvider builder) {
RequestResponsePact deletePaoThatDoesNotExist(PactDslWithProvider builder) {
return builder
.given("default")
.uponReceiving("create PAO with ID <uuid>")
.uponReceiving("delete non-existent PAO")
.method("DELETE")
.path("/api/policy/v1alpha1/pao/" + snapshotId)
.willRespondWith()
Expand Down

0 comments on commit 75542bf

Please sign in to comment.