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:
authorRobert Speicher <rspeicher@gmail.com>2015-06-22 23:06:04 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-06-22 23:06:04 +0300
commit871bb2f14376355f08ecc9812feec020429e0662 (patch)
tree46a1b54bd15c8f81668e9c7667c3ecdc0adcdaf1 /spec/helpers
parent15a05be70d7652a98f870c5b5d02373dabf363e0 (diff)
Fix bad multi-line split from previous commit
Diffstat (limited to 'spec/helpers')
-rw-r--r--spec/helpers/tree_helper_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/helpers/tree_helper_spec.rb b/spec/helpers/tree_helper_spec.rb
index 942c4c82868..c70dd8076e0 100644
--- a/spec/helpers/tree_helper_spec.rb
+++ b/spec/helpers/tree_helper_spec.rb
@@ -5,7 +5,8 @@ describe TreeHelper do
let(:project) { create(:project) }
before do
- @repository = project.repository @commit = project.commit("e56497bb")
+ @repository = project.repository
+ @commit = project.commit("e56497bb")
end
context "on a directory containing more than one file/directory" do