Skip to content

Commit

Permalink
Fix bank mandate test
Browse files Browse the repository at this point in the history
  • Loading branch information
katherine-signal authored and jon-signal committed Oct 20, 2023
1 parent cf2353b commit 6f16642
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -769,10 +769,10 @@ void testGetBankMandate() {

@Test
void testGetBankMandateInvalidBankTransferType() {
final Response response = RESOURCE_EXTENSION.target("/v1/subscription/ach")
final Response response = RESOURCE_EXTENSION.target("/v1/subscription/bank_mandate/ach")
.request()
.get();
assertThat(response.getStatus()).isEqualTo(404);
assertThat(response.getStatus()).isEqualTo(400);
}

@ParameterizedTest
Expand Down

0 comments on commit 6f16642

Please sign in to comment.