Skip to content

Commit 9b345c9

Browse files
committed
test: fixed image version
1 parent dd55961 commit 9b345c9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/modules/redis/src/redis-container.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ describe("RedisContainer", { timeout: 240_000 }, () => {
104104

105105
// startWithRedisStack {
106106
it("should start with redis-stack-server and json module", async () => {
107-
const container = await new RedisContainer("redis/redis-stack-server:latest").withPassword("testPassword").start();
107+
const container = await new RedisContainer("redis/redis-stack-server:7.4.0-v4")
108+
.withPassword("testPassword")
109+
.start();
108110
const client = await connectTo(container);
109111

110112
await client.json.set("key", "$", { name: "test" });

0 commit comments

Comments
 (0)