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 1d1850c commit 0d5bb3bCopy full SHA for 0d5bb3b
sdk/src/androidTest/java/ly/count/android/sdk/ServerConfigBuilder.java
@@ -325,9 +325,9 @@ private void validateLimits(Countly countly) {
325
}
326
327
private void validateFilterSettings(Countly countly) {
328
- Set<String> eventFilterList = (Set<String>) config.get(keyREventSegmentationBlacklist);
+ Set<String> eventFilterList = (Set<String>) config.get(keyREventBlacklist);
329
if (eventFilterList == null) {
330
- eventFilterList = (Set<String>) config.get(keyREventSegmentationWhitelist);
+ eventFilterList = (Set<String>) config.get(keyREventWhitelist);
331
332
Assert.assertEquals(Objects.requireNonNull(eventFilterList).toString(), countly.moduleConfiguration.getEventFilterList().filterList.toString());
333
0 commit comments