Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit da9e0d6

Browse files
committed
Tests compiling
1 parent 41e01ee commit da9e0d6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/in_app_purchase/in_app_purchase_android/android/src/test/java/io/flutter/plugins/inapppurchase/MethodCallHandlerTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ public void queryPurchasesAsync() {
607607
when(mockBillingClient.queryPurchasesAsync(
608608
any(QueryPurchasesParams.class),
609609
any(PurchaseHistoryResponseListener.class)
610-
).thenAnswer(
610+
)).thenAnswer(
611611
new Answer<Object>() {
612612
Object answer(InvocationOnMock invocation) {
613613
BillingResult.Builder builder = BillingResult.newBuilder();
@@ -619,7 +619,8 @@ Object answer(InvocationOnMock invocation) {
619619
);
620620
return null;
621621
}
622-
});
622+
}
623+
);
623624

624625
HashMap<String, Object> arguments = new HashMap<>();
625626
arguments.put("skuType", SkuType.INAPP);

0 commit comments

Comments
 (0)