File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
src/androidTest/java/cloud/eppo/android Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
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
5
5
}
6
6
7
7
task clean (type : Delete ) {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ plugins {
7
7
}
8
8
9
9
group = " cloud.eppo"
10
- version = " 4.9.1-SNAPSHOT "
10
+ version = " 4.9.1"
11
11
12
12
android {
13
13
buildFeatures. buildConfig true
@@ -68,7 +68,7 @@ ext.versions = [
68
68
]
69
69
70
70
dependencies {
71
- api ' cloud.eppo:sdk-common-jvm:3.10.0 '
71
+ api ' cloud.eppo:sdk-common-jvm:3.11.2 '
72
72
73
73
implementation ' org.slf4j:slf4j-api:2.0.17'
74
74
Original file line number Diff line number Diff line change @@ -1037,7 +1037,7 @@ public void testAssignmentEventCorrectlyCreated() {
1037
1037
Date parsedTimestamp = capturedAssignment .getTimestamp ();
1038
1038
assertNotNull (parsedTimestamp );
1039
1039
assertTrue (parsedTimestamp .after (testStart ));
1040
- assertTrue (parsedTimestamp .before (assertionDate ));
1040
+ assertTrue (parsedTimestamp .before (assertionDate ) || parsedTimestamp . equals ( assertionDate ) );
1041
1041
1042
1042
Map <String , String > expectedMeta = new HashMap <>();
1043
1043
expectedMeta .put ("obfuscated" , "true" );
You can’t perform that action at this time.
0 commit comments