Skip to content

Commit

Permalink
Fix SASL test
Browse files Browse the repository at this point in the history
  • Loading branch information
acogoluegnes committed Sep 9, 2024
1 parent cefe334 commit 44bda71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ void getSaslMechanismShouldThrowExceptionIfNoMechanismSpecifiedAndNoMatch() {
assertThatThrownBy(() -> configuration.getSaslMechanism(asList("FOO", "BAR")))
.isInstanceOf(IllegalStateException.class)
.hasMessage(
"Unable to agree on a SASL mechanism. Client: PLAIN, EXTERNAL / server FOO, BAR.");
"Unable to agree on a SASL mechanism. Client: PLAIN, ANONYMOUS, EXTERNAL / server FOO, BAR.");
}
}

0 comments on commit 44bda71

Please sign in to comment.