summaryrefslogtreecommitdiff
path: root/spec/controllers/tree_controller_spec.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-08-07 20:46:17 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-08-07 20:46:17 +0300
commita0755d2f051c5a9cd31721333adee22cb40b1008 (patch)
tree089b0bf2dc06b3bfc47b5bdbbb2ab136c659a271 /spec/controllers/tree_controller_spec.rb
parentfe228b89d540ff61fd97e27b0ebe5915a737bb52 (diff)
downloadgitlab-ce-a0755d2f051c5a9cd31721333adee22cb40b1008.tar.gz
Fix tests
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'spec/controllers/tree_controller_spec.rb')
-rw-r--r--spec/controllers/tree_controller_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/controllers/tree_controller_spec.rb b/spec/controllers/tree_controller_spec.rb
index b169c2a678f..8147fb0e6fb 100644
--- a/spec/controllers/tree_controller_spec.rb
+++ b/spec/controllers/tree_controller_spec.rb
@@ -26,7 +26,7 @@ describe Projects::TreeController do
end
context "valid branch, valid path" do
- let(:id) { 'master/app/' }
+ let(:id) { 'master/encoding/' }
it { should respond_with(:success) }
end
@@ -36,7 +36,7 @@ describe Projects::TreeController do
end
context "invalid branch, valid path" do
- let(:id) { 'invalid-branch/app/' }
+ let(:id) { 'invalid-branch/encoding/' }
it { should respond_with(:not_found) }
end
end