File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/test/java/com/eppo/sdk Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11
11
}
12
12
13
13
group = ' cloud.eppo'
14
- version = ' 3.0.2 -SNAPSHOT'
14
+ version = ' 3.0.3 -SNAPSHOT'
15
15
ext. isReleaseVersion = ! version. endsWith(" SNAPSHOT" )
16
16
17
17
import org.apache.tools.ant.filters.ReplaceTokens
@@ -31,7 +31,7 @@ repositories {
31
31
32
32
dependencies {
33
33
// Re-export classes and interfaces that will be used upstream
34
- api ' cloud.eppo:sdk-common-jvm:3.0.2 '
34
+ api ' cloud.eppo:sdk-common-jvm:3.1.1-SNAPSHOT '
35
35
36
36
implementation ' com.github.zafarkhaja:java-semver:0.10.2'
37
37
implementation ' com.fasterxml.jackson.core:jackson-databind:2.17.1'
Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ private void uninitClient() {
276
276
private void initBuggyClient () {
277
277
try {
278
278
EppoClient eppoClient = initClient (DUMMY_FLAG_API_KEY );
279
- Field configurationStoreField = BaseEppoClient .class .getDeclaredField ("requestor " );
279
+ Field configurationStoreField = BaseEppoClient .class .getDeclaredField ("configurationStore " );
280
280
configurationStoreField .setAccessible (true );
281
281
configurationStoreField .set (eppoClient , null );
282
282
} catch (NoSuchFieldException | IllegalAccessException e ) {
You can’t perform that action at this time.
0 commit comments