Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-11-21 20:22:03 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-11-21 20:22:03 +0300
commitd375e3f15b6f0340addb9a20e0c03a1f1fca413a (patch)
tree3e567f06bcefbd67315eaaa1894b9b102f9281ae /spec/lib/gitlab
parenta36d556137116385e84eca592ec62e46ecb97e03 (diff)
Fix specs and improve code readability
Diffstat (limited to 'spec/lib/gitlab')
-rw-r--r--spec/lib/gitlab/chat_commands/deploy_spec.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/lib/gitlab/chat_commands/deploy_spec.rb b/spec/lib/gitlab/chat_commands/deploy_spec.rb
index bdbaa41dd14..26741367e63 100644
--- a/spec/lib/gitlab/chat_commands/deploy_spec.rb
+++ b/spec/lib/gitlab/chat_commands/deploy_spec.rb
@@ -52,12 +52,13 @@ describe Gitlab::ChatCommands::Deploy, service: true do
context 'when teardown action exists' do
let!(:teardown) do
- create(:ci_build, :manual, :teardown_environment, project: project, pipeline: build.pipeline,
+ create(:ci_build, :manual, :teardown_environment,
+ project: project, pipeline: build.pipeline,
name: 'teardown', environment: 'production')
end
it 'returns error' do
- expect(subject).to eq(action)
+ expect(subject).to eq(manual1)
end
end
end