Skip to content

Commit

Permalink
#61 adding add'l tests around auth scheme for some metalnx issues
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-conway committed Oct 6, 2020
1 parent 1f61f43 commit 89b8b0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static List<String> getAuthSchemeList() {
public static AuthScheme findTypeByString(final String authType) {
AuthScheme authSchemeValue = null;
for (AuthScheme authScheme : AuthScheme.values()) {
if (authScheme.getTextValue().equals(authType)) {
if (authScheme.getTextValue().equals(authType.trim())) {
authSchemeValue = authScheme;
break;
}
Expand Down

0 comments on commit 89b8b0b

Please sign in to comment.