Skip to content

Commit

Permalink
Update DuoConnectorTest.java
Browse files Browse the repository at this point in the history
Restore exception message format to match the format in the exchangeAuthorizationCodeFor2FAResult_error_code test.
  • Loading branch information
eosmith authored Oct 31, 2023
1 parent e2f95c2 commit 1b67a82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ void exchangeAuthorizationCodeFor2FAResult_error_code() throws IOException, DuoE
"client_assertion_type", "client_assertion");
Assertions.fail();
} catch (DuoException e) {
assertEquals("Response.error()", e.getMessage());
assertEquals("msg=Response.error(), msg_detail=", e.getMessage());
}
}

Expand Down

0 comments on commit 1b67a82

Please sign in to comment.