Skip to content

Commit

Permalink
Fix version in docker images and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Fameing committed Sep 3, 2024
1 parent 2d3d62d commit 8dbd121
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class AutoConfiguredDatasourceDependsOnTest {

@Test
public void shouldConnectToMySQL() throws Exception {
assertThat(jdbcTemplate.queryForObject("select version()", String.class)).startsWith("8.0.");
assertThat(jdbcTemplate.queryForObject("select version()", String.class)).startsWith("9.0.");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class EmbeddedMySQLBootstrapConfigurationTest {

@Test
public void shouldConnectToMySQL() throws Exception {
assertThat(jdbcTemplate.queryForObject("select version()", String.class)).startsWith("8.0.");
assertThat(jdbcTemplate.queryForObject("select version()", String.class)).startsWith("9.0.");
}

@Test
Expand Down

0 comments on commit 8dbd121

Please sign in to comment.