diff options
author | Ahmad Sherif <me@ahmadsherif.com> | 2018-02-16 21:39:43 +0100 |
---|---|---|
committer | Ahmad Sherif <me@ahmadsherif.com> | 2018-02-26 16:59:29 +0100 |
commit | c370f53cb68038b469ec219cf2ec248e62a72683 (patch) | |
tree | c8d0a5ce899eab4f20f5afa0addaa242209a72bf /spec | |
parent | 2aa2731c8b827b6ecb0a87634aca13fe2398ac7e (diff) | |
download | gitlab-ce-c370f53cb68038b469ec219cf2ec248e62a72683.tar.gz |
Migrate recursive tree entries fetching to Gitaly
Diffstat (limited to 'spec')
-rw-r--r-- | spec/lib/gitlab/gitaly_client/commit_service_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/gitlab/gitaly_client/commit_service_spec.rb b/spec/lib/gitlab/gitaly_client/commit_service_spec.rb index 001c4d3e10a..9be3fa633a7 100644 --- a/spec/lib/gitlab/gitaly_client/commit_service_spec.rb +++ b/spec/lib/gitlab/gitaly_client/commit_service_spec.rb @@ -113,7 +113,7 @@ describe Gitlab::GitalyClient::CommitService do .with(gitaly_request_with_path(storage_name, relative_path), kind_of(Hash)) .and_return([]) - client.tree_entries(repository, revision, path) + client.tree_entries(repository, revision, path, false) end context 'with UTF-8 params strings' do @@ -126,7 +126,7 @@ describe Gitlab::GitalyClient::CommitService do .with(gitaly_request_with_path(storage_name, relative_path), kind_of(Hash)) .and_return([]) - client.tree_entries(repository, revision, path) + client.tree_entries(repository, revision, path, false) end end end |