We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fb1d09 commit 2880d4eCopy full SHA for 2880d4e
OneSignalSDK/app/src/test/java/com/onesignal/ShadowBadgeCountUpdater.java
@@ -1,5 +1,6 @@
1
package com.onesignal;
2
3
+import android.content.Context;
4
import android.database.sqlite.SQLiteDatabase;
5
6
import org.robolectric.annotation.Implements;
@@ -9,7 +10,7 @@ public class ShadowBadgeCountUpdater {
9
10
11
public static int lastCount = 0;
12
- private static void updateCount(int count) {
13
+ private static void updateCount(int count, Context context) {
14
lastCount = count;
15
}
16
0 commit comments