1
0
mirror of https://github.com/redis/go-redis.git synced 2025-06-09 16:01:18 +03:00

Merge pull request #1205 from jskelcy/js/fix_tests

properly point redisServerConf to redis.conf
This commit is contained in:
Vladimir Mihailenco 2019-12-07 11:35:06 +02:00 committed by GitHub
commit 9d85e760bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -257,7 +257,7 @@ func (p *redisProcess) Close() error {
var (
redisServerBin, _ = filepath.Abs(filepath.Join("testdata", "redis", "src", "redis-server"))
redisServerConf, _ = filepath.Abs(filepath.Join("testdata", "redis.conf"))
redisServerConf, _ = filepath.Abs(filepath.Join("testdata", "redis", "redis.conf"))
)
func redisDir(port string) (string, error) {