Marshal HttpResponseException in GooglePlayBillingManager

This commit is contained in:
ravi-signal
2025-10-06 12:18:51 -05:00
committed by GitHub
parent d6c15ef1d5
commit 9751569dc7
2 changed files with 5 additions and 3 deletions

View File

@@ -273,7 +273,7 @@ class GooglePlayBillingManagerTest {
return Stream.of(
Arguments.of(404, SubscriptionNotFoundException.class),
Arguments.of(410, SubscriptionNotFoundException.class),
Arguments.of(400, HttpResponseException.class)
Arguments.of(400, IOException.class)
);
}
@ParameterizedTest