diff --git a/src/test/java/bio/terra/pact/consumer/TpsPactTest.java b/src/test/java/bio/terra/pact/consumer/TpsPactTest.java index b19a19197a..9cdb716330 100644 --- a/src/test/java/bio/terra/pact/consumer/TpsPactTest.java +++ b/src/test/java/bio/terra/pact/consumer/TpsPactTest.java @@ -63,7 +63,7 @@ RequestResponsePact createPao(PactDslWithProvider builder) { String snapshotId = UUID.randomUUID().toString(); return builder .given("default") - .uponReceiving("create PAO with ID ") + .uponReceiving("create PAO for TDR snapshot") .method("POST") .path("/api/policy/v1alpha1/pao") .body( @@ -97,7 +97,7 @@ RequestResponsePact createPao(PactDslWithProvider builder) { RequestResponsePact deletePaoThatDoesNotExist(PactDslWithProvider builder) { return builder .given("default") - .uponReceiving("create PAO with ID ") + .uponReceiving("delete non-existent PAO") .method("DELETE") .path("/api/policy/v1alpha1/pao/" + snapshotId) .willRespondWith()