Skip to content

Commit

Permalink
Update version in test
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli authored Nov 4, 2023
1 parent fc34a86 commit 9e66324
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class TestUltimateRedisApplication {
@ServiceConnection(name = "redis")
GenericContainer<?> redisContainer(DynamicPropertyRegistry dynamicPropertyRegistry) {
GenericContainer redisContiner =
new GenericContainer<>(DockerImageName.parse("redis").withTag("7.2.2-alpine"))
new GenericContainer<>(DockerImageName.parse("redis").withTag("7.2.3-alpine"))
.withExposedPorts(6379);
dynamicPropertyRegistry.add("cache.redis-port", () -> redisContiner.getMappedPort(6379));
dynamicPropertyRegistry.add("cache.redis-host", redisContiner::getHost);
Expand Down

0 comments on commit 9e66324

Please sign in to comment.