Skip to content

Commit

Permalink
Update fix for Bug#114687 (Bug#36529541), Tests fail after mysql_nati…
Browse files Browse the repository at this point in the history
…ve_password has been made optional in server.

Change-Id: I4df9985d802ec4bd31f9b103a045926226df537d
  • Loading branch information
fjssilva committed Jun 6, 2024
1 parent dd8a023 commit e0e8e34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/testsuite/x/internal/XProtocolTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ public void testCapabilities() {
assertEquals("mysql", capabilities.getNodeType());
assertTrue(capabilities.getTls());
assertFalse(capabilities.getClientPwdExpireOk());
assertTrue(capabilities.getAuthenticationMechanisms().contains("MYSQL41"));
assertFalse(capabilities.getAuthenticationMechanisms().isEmpty());
assertEquals("text", capabilities.getDocFormats());
}

Expand Down

0 comments on commit e0e8e34

Please sign in to comment.