Skip to content

Commit

Permalink
Merge pull request #13 from akeylesslabs/fix-tests
Browse files Browse the repository at this point in the history
Tests signature fixes
  • Loading branch information
alikdolg authored May 8, 2024
2 parents 3daafbe + 074ccd8 commit 834643b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/test/java/io/akeyless/client/api/V2ApiTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -812,8 +812,8 @@ public void gatewayCreateProducerRdpTest() throws ApiException {
*/
@Test
public void gatewayCreateProducerVenafiTest() throws ApiException {
GatewayCreateProducerCertificateAutomation body = null;
GatewayCreateProducerCertificateAutomationOutput response = api.gatewayCreateProducerCertificateAutomation(body);
GatewayCreateProducerVenafi body = null;
GatewayCreateProducerVenafiOutput response = api.gatewayCreateProducerVenafi(body);
// TODO: test validations
}

Expand Down Expand Up @@ -1019,7 +1019,7 @@ public void getPkiCertificateTest() throws ApiException {
@Test
public void getDynamicSecretValueTest() throws ApiException {
GetDynamicSecretValue body = null;
Map<String, String> response = api.getDynamicSecretValue(body);
Map<String, Object> response = api.getDynamicSecretValue(body);

// TODO: test validations
}
Expand Down Expand Up @@ -1083,7 +1083,7 @@ public void getSSHCertificateTest() throws ApiException {
@Test
public void getSecretValueTest() throws ApiException {
GetSecretValue body = null;
Map<String, String> response = api.getSecretValue(body);
Map<String, Object> response = api.getSecretValue(body);

// TODO: test validations
}
Expand Down Expand Up @@ -1274,7 +1274,7 @@ public void rollbackSecretTest() throws ApiException {
*/
@Test
public void rotateKeyTest() throws ApiException {
UpdateRotationSettings body = null;
RotateKey body = null;
RotateKeyOutput response = api.rotateKey(body);

// TODO: test validations
Expand Down

0 comments on commit 834643b

Please sign in to comment.