Skip to content

Commit 060a692

Browse files
committed
Fix test.
1 parent 43fd976 commit 060a692

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ kotlin.code.style=official
2323
# Deployment variables
2424
GROUP=com.segment.analytics.kotlin.destinations
2525

26-
VERSION_CODE=100
27-
VERSION_NAME=1.0.0
26+
VERSION_CODE=101
27+
VERSION_NAME=1.0.1
2828

2929
POM_ARTIFACT_ID=consent
3030
POM_NAME=consent
@@ -40,4 +40,4 @@ POM_LICENCE_URL=http://opensource.org/licenses/MIT
4040
POM_LICENCE_DIST=repo
4141

4242
POM_DEVELOPER_ID=segmentio
43-
POM_DEVELOPER_NAME=Segment, Inc.
43+
POM_DEVELOPER_NAME=Segment, Inc.

lib/src/test/kotlin/com/segment/analytics/kotlin/destinations/consent/ConsentManagementPluginTests.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ class ConsentManagementPluginTests {
1919
store.provide(ConsentState())
2020

2121
val cp = object : ConsentCategoryProvider {
22+
23+
override fun setCategoryList(categories: List<String>) {
24+
// NO OP
25+
}
26+
2227
override fun getCategories(): Map<String, Boolean> {
2328
var categories = HashMap<String, Boolean>()
2429

0 commit comments

Comments
 (0)