Commit a00c0050 authored by Yorick Peterse's avatar Yorick Peterse

Merge branch 'zj-unify-ref-service-spec-ce-ee' into 'master'

GitalyClient spec: Remove the diff between CE/EE

See merge request gitlab-org/gitlab-ce!26610
parents 67ece2ef 60c28a5f
......@@ -89,6 +89,16 @@ describe Gitlab::GitalyClient::RefService do
end
end
describe '#list_new_blobs' do
it 'raises DeadlineExceeded when timeout is too small' do
newrev = '54fcc214b94e78d7a41a9a8fe6d87a5e59500e51'
expect do
client.list_new_blobs(newrev, dynamic_timeout: 0.001)
end.to raise_error(GRPC::DeadlineExceeded)
end
end
describe '#local_branches' do
it 'sends a find_local_branches message' do
expect_any_instance_of(Gitaly::RefService::Stub)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment