Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci-4.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ jobs:
jdk: 8
profile: 'SQL-templates'
- os: ubuntu-latest
jdk: 17
jdk: 25
profile: 'PostgreSQL-11'
- os: ubuntu-latest
jdk: 17
jdk: 25
profile: 'MySQL-5.7'
- os: ubuntu-latest
jdk: 17
jdk: 25
profile: 'MariaDB-10.4'
- os: ubuntu-latest
jdk: 17
jdk: 25
profile: 'MSSQL-2019-latest'
- os: ubuntu-latest
jdk: 17
jdk: 25
profile: 'Oracle-23'
uses: ./.github/workflows/ci.yml
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci-matrix-5.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@ jobs:
jdk: 11
profile: 'SQL-templates'
- os: ubuntu-latest
jdk: 21
jdk: 25
profile: 'PostgreSQL-11'
- os: ubuntu-latest
jdk: 21
jdk: 25
profile: 'MySQL-5.7'
- os: ubuntu-latest
jdk: 21
jdk: 25
profile: 'MariaDB-10.4'
- os: ubuntu-latest
jdk: 21
jdk: 25
profile: 'MSSQL-2019-latest'
- os: ubuntu-latest
jdk: 21
jdk: 25
profile: 'Oracle-23'
uses: ./.github/workflows/ci.yml
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,9 @@ public void testVerifyIdentityInvalidHostname(TestContext ctx) {
options.setHost("localhost");

MySQLConnection.connect(vertx, options).onComplete( ctx.asyncAssertFailure(err -> {
ctx.assertEquals(err.getMessage(), "No name matching localhost found");
String expected = "No name matching localhost found";
ctx.assertTrue(err.getMessage().contains(expected), "Was expecting <" + err.getMessage() +
"> to contain <" + expected + ">");
}));
}

Expand Down