diff --git a/src/Redis/Redis.ts b/src/Redis/Redis.ts index f88e171..62392a3 100644 --- a/src/Redis/Redis.ts +++ b/src/Redis/Redis.ts @@ -21,7 +21,7 @@ export class Redis extends TestDatabase { async connect(uri?: string | undefined): Promise { this.redis = createClient({ - url: uri ?? this.uri ?? "redis://localhost:6379/_benchmark_", + url: uri ?? this.uri ?? "redis://localhost:6379/7957", // 7957 -> test }); await this.redis.connect(); this.repository = new Repository(locationSchema, this.redis);