Skip to content

Commit

Permalink
chore: update test
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardBarclay committed Oct 11, 2024
1 parent aec870a commit 767101c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ public void shouldGetProgrammeMembershipSummaryList() throws Exception {
)
.andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_JSON_VALUE))
.andExpect(jsonPath("$.[*].programmeMembershipId").value(containsInAnyOrder(
.andExpect(jsonPath("$.[*].programmeMembershipUuid").value(containsInAnyOrder(
PROGRAMME_UUID1.toString(), PROGRAMME_UUID2.toString())))
.andExpect(jsonPath("$.[*].programmeMembershipName")
.andExpect(jsonPath("$.[*].programmeName")
.value(containsInAnyOrder(PROGRAMME_NAME1, PROGRAMME_NAME2)))
.andExpect(jsonPath("$", hasSize(2)));
}
Expand Down

0 comments on commit 767101c

Please sign in to comment.