Skip to content

Commit 3209265

Browse files
authored
upgrade common jdk sdk (#195)
1 parent 963231f commit 3209265

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id 'com.android.application' version '8.10.0' apply false
4-
id 'com.android.library' version '8.10.0' apply false
3+
id 'com.android.application' version '8.10.1' apply false
4+
id 'com.android.library' version '8.10.1' apply false
55
}
66

77
task clean(type: Delete) {

eppo/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = "cloud.eppo"
10-
version = "4.9.1-SNAPSHOT"
10+
version = "4.9.1"
1111

1212
android {
1313
buildFeatures.buildConfig true
@@ -68,7 +68,7 @@ ext.versions = [
6868
]
6969

7070
dependencies {
71-
api 'cloud.eppo:sdk-common-jvm:3.10.0'
71+
api 'cloud.eppo:sdk-common-jvm:3.11.2'
7272

7373
implementation 'org.slf4j:slf4j-api:2.0.17'
7474

eppo/src/androidTest/java/cloud/eppo/android/EppoClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,7 @@ public void testAssignmentEventCorrectlyCreated() {
10371037
Date parsedTimestamp = capturedAssignment.getTimestamp();
10381038
assertNotNull(parsedTimestamp);
10391039
assertTrue(parsedTimestamp.after(testStart));
1040-
assertTrue(parsedTimestamp.before(assertionDate));
1040+
assertTrue(parsedTimestamp.before(assertionDate) || parsedTimestamp.equals(assertionDate));
10411041

10421042
Map<String, String> expectedMeta = new HashMap<>();
10431043
expectedMeta.put("obfuscated", "true");

0 commit comments

Comments
 (0)