Skip to content

Commit e1c8f28

Browse files
committed
Updated test
1 parent 1c0f3c1 commit e1c8f28

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ojdbc-provider-azure/src/test/java/oracle/jdbc/provider/azure/configuration/AzureVaultJsonProviderTest.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ public void testServicePrincipleAuthentication() throws SQLException {
8181
"AZURE_CLIENT_SECRET=" + TestProperties.getOrAbort(
8282
AzureTestProperty.AZURE_CLIENT_SECRET),
8383
"AZURE_TENANT_ID=" + TestProperties.getOrAbort(
84-
AzureTestProperty.AZURE_TENANT_ID)};
84+
AzureTestProperty.AZURE_TENANT_ID),
85+
"parser=json"};
8586

8687
String url = composeUrl(baseUrl, options);
8788
verifyProperties(url);
@@ -108,7 +109,8 @@ public void testServicePrincipleAuthenticationWithKeyOption()
108109
"AZURE_TENANT_ID=" + TestProperties.getOrAbort(
109110
AzureTestProperty.AZURE_TENANT_ID),
110111
"key=" + TestProperties.getOrAbort(
111-
AzureTestProperty.AZURE_KEY_VAULT_SECRET_PAYLOAD_KEY)};
112+
AzureTestProperty.AZURE_KEY_VAULT_SECRET_PAYLOAD_KEY),
113+
"parser=json"};
112114

113115
String url = composeUrl(baseUrl, options);
114116
verifyProperties(url);

0 commit comments

Comments
 (0)