Skip to content

Commit 2880d4e

Browse files
committed
Fixed failing unit test
1 parent 8fb1d09 commit 2880d4e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

OneSignalSDK/app/src/test/java/com/onesignal/ShadowBadgeCountUpdater.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package com.onesignal;
22

3+
import android.content.Context;
34
import android.database.sqlite.SQLiteDatabase;
45

56
import org.robolectric.annotation.Implements;
@@ -9,7 +10,7 @@ public class ShadowBadgeCountUpdater {
910

1011
public static int lastCount = 0;
1112

12-
private static void updateCount(int count) {
13+
private static void updateCount(int count, Context context) {
1314
lastCount = count;
1415
}
1516
}

0 commit comments

Comments
 (0)