GitalyClient spec: Remove the diff between CE/EE
This commit is contained in:
parent
6ac86054ed
commit
60c28a5fe0
1 changed files with 10 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue