summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/fixtures/gitlab_config_redis.yml1
-rw-r--r--spec/gitlab_config_spec.rb1
2 files changed, 0 insertions, 2 deletions
diff --git a/spec/fixtures/gitlab_config_redis.yml b/spec/fixtures/gitlab_config_redis.yml
index e07e5df..cfe4166 100644
--- a/spec/fixtures/gitlab_config_redis.yml
+++ b/spec/fixtures/gitlab_config_redis.yml
@@ -1,5 +1,4 @@
redis:
- bin: /usr/bin/redis-cli
host: 127.0.1.1
port: 6378
pass: secure
diff --git a/spec/gitlab_config_spec.rb b/spec/gitlab_config_spec.rb
index b92da65..e33e606 100644
--- a/spec/gitlab_config_spec.rb
+++ b/spec/gitlab_config_spec.rb
@@ -10,7 +10,6 @@ describe GitlabConfig do
config.instance_variable_set(:@config, YAML.load(config_file))
end
- it { config.redis['bin'].should eq('/usr/bin/redis-cli') }
it { config.redis['host'].should eq('127.0.1.1') }
it { config.redis['port'].should eq(6378) }
it { config.redis['database'].should eq(1) }