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:
authorRubén Dávila <ruben@gitlab.com>2018-05-09 21:20:28 +0300
committerRubén Dávila <ruben@gitlab.com>2018-05-09 21:20:28 +0300
commit5b584a0fd24ec80b5d8b7bdb0eb3f479208bf622 (patch)
tree45044dd637b811ac0b10f2f9daebd41715482ddb /spec/lib/gitlab/git/raw_diff_change_spec.rb
parent1802954b4785fa3d6bd3686f5b6de3094a2eb851 (diff)
Backport some changes from gitlab-ee!5476
The lib/gitlab/git/repository.rb needs to have the same content between gitlab-ce and gitlab-ee in order to have Gitaly working fine.
Diffstat (limited to 'spec/lib/gitlab/git/raw_diff_change_spec.rb')
-rw-r--r--spec/lib/gitlab/git/raw_diff_change_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/git/raw_diff_change_spec.rb b/spec/lib/gitlab/git/raw_diff_change_spec.rb
index eedde34534f..a0bb37fd84a 100644
--- a/spec/lib/gitlab/git/raw_diff_change_spec.rb
+++ b/spec/lib/gitlab/git/raw_diff_change_spec.rb
@@ -12,7 +12,7 @@ describe Gitlab::Git::RawDiffChange do
expect(change.operation).to eq(:unknown)
expect(change.old_path).to be_blank
expect(change.new_path).to be_blank
- expect(change.blob_size).to be_blank
+ expect(change.blob_size).to eq(0)
end
end