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
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ func (p *redisProcess) Close() error {
var ( var (
redisServerBin, _ = filepath.Abs(filepath.Join("testdata", "redis", "src", "redis-server")) 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) { func redisDir(port string) (string, error) {