Hardcode paymentActivation flag to true

This commit is contained in:
Katherine
2024-04-01 15:07:11 -07:00
committed by GitHub
parent a9d0ab271d
commit d002e5dda8
6 changed files with 16 additions and 16 deletions

View File

@@ -391,7 +391,7 @@ class ProfileControllerTest {
.get(BaseProfileResponse.class);
assertThat(profile.getCapabilities().pni()).isTrue();
assertThat(profile.getCapabilities().paymentActivation()).isFalse();
assertThat(profile.getCapabilities().paymentActivation()).isTrue();
}
@Test