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:
authorSean McGivern <sean@mcgivern.me.uk>2017-09-06 18:55:35 +0300
committerSean McGivern <sean@mcgivern.me.uk>2017-09-06 18:55:35 +0300
commitba39b26cc2f1ace540177c3b73d64d40b06bc902 (patch)
tree74691ce0b45a6b2d35efc58cdbfa460dc0ddef22 /spec/requests
parent93e1d4dd285c657a3abb09dff7f86e552b0097f2 (diff)
parent46f6092a6d4dd39bfa193d0a6ccbd5688df7eebe (diff)
Merge branch '35942_api_binary_encoding' into 'master'
API fix for non UTF-8 data Closes #35942 See merge request !14038
Diffstat (limited to 'spec/requests')
-rw-r--r--spec/requests/api/commits_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/requests/api/commits_spec.rb b/spec/requests/api/commits_spec.rb
index edbfaf510c5..f663719d28c 100644
--- a/spec/requests/api/commits_spec.rb
+++ b/spec/requests/api/commits_spec.rb
@@ -673,6 +673,12 @@ describe API::Commits do
it_behaves_like 'ref diff'
end
end
+
+ context 'when binary diff are treated as text' do
+ let(:commit_id) { TestEnv::BRANCH_SHA['add-pdf-text-binary'] }
+
+ it_behaves_like 'ref diff'
+ end
end
end