Skip to content

Commit

Permalink
fix(project): Bump core SDK version again to fix class case issue
Browse files Browse the repository at this point in the history
Signed-off-by: James Hart <[email protected]>
  • Loading branch information
jhart1685 committed Nov 11, 2021
1 parent 9c7890c commit 37c37be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
import com.ibm.cloud.sdk.core.service.exception.ServiceResponseException;
import com.ibm.cloud.sdk.core.service.model.FileWithMetadata;
import com.ibm.cloud.sdk.core.util.CredentialUtils;
import com.google.gson.internal.LazilyParsedNumber;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Arrays;
Expand Down Expand Up @@ -396,7 +397,7 @@ public void testGetImageManifest() throws Exception {

assertNotNull(resultResult);

double version = (double)(resultResult.get("schemaVersion"));
double version = ((Number)resultResult.get("schemaVersion")).doubleValue();
double expected = 2;
assertEquals(version, expected);
} catch (ServiceResponseException e) {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
of the SDK generator used to generate your SDK code.
See this link for details: https://github.ibm.com/CloudEngineering/openapi-sdkgen/wiki/Compatibility-Chart
-->
<sdk-core-version>9.13.4</sdk-core-version>
<sdk-core-version>9.14.1</sdk-core-version>

<!-- >>> Replace this with the name of your SDK's github repository -->
<git-repository-name>container-registry-java-sdk</git-repository-name>
Expand Down

0 comments on commit 37c37be

Please sign in to comment.