summaryrefslogtreecommitdiff
path: root/spec/helpers
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-08-07 20:12:02 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-08-07 20:12:02 +0300
commitfe228b89d540ff61fd97e27b0ebe5915a737bb52 (patch)
tree8365c58e23fe2d6690f3c9809a5296aa43017ac1 /spec/helpers
parent349eaaa9c27687e5e1430a967d19877215220d83 (diff)
downloadgitlab-ce-fe228b89d540ff61fd97e27b0ebe5915a737bb52.tar.gz
Fix application helper specs
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'spec/helpers')
-rw-r--r--spec/helpers/application_helper_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/helpers/application_helper_spec.rb b/spec/helpers/application_helper_spec.rb
index 053a1fe22f5..510b76fa9df 100644
--- a/spec/helpers/application_helper_spec.rb
+++ b/spec/helpers/application_helper_spec.rb
@@ -132,12 +132,12 @@ describe ApplicationHelper do
it "includes a list of branch names" do
options[0][0].should == 'Branches'
- options[0][1].should include('master', 'stable')
+ options[0][1].should include('master', 'feature')
end
it "includes a list of tag names" do
options[1][0].should == 'Tags'
- options[1][1].should include('v0.9.4','v1.2.0')
+ options[1][1].should include('v1.0.0','v1.1.0')
end
it "includes a specific commit ref if defined" do