Skip to content

Commit

Permalink
Passing the needed parameter: credentialType to the createCredential …
Browse files Browse the repository at this point in the history
…method

Signed-off-by: cmoulliard <[email protected]>
  • Loading branch information
cmoulliard authored and aureamunoz committed Sep 27, 2023
1 parent a3a3cb8 commit d1d9f41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/test/java/io/halkyon/utils/TestUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static Service createService(String serviceName, String serviceVersion, S
public static Service createServiceWithCredential(String serviceName, String serviceVersion, String serviceType,
String endpoint) {
Service service = createService(serviceName, serviceVersion, serviceType, endpoint);
createCredential(serviceName + "-credential", service.id, "username", "password", null);
createCredential(serviceName + "-credential", "basic", service.id, "username", "password", null);
return service;
}

Expand Down

0 comments on commit d1d9f41

Please sign in to comment.