diff options
author | Andrew Newdigate <andrew@gitlab.com> | 2019-08-26 18:49:58 +0200 |
---|---|---|
committer | Andrew Newdigate <andrew@gitlab.com> | 2019-08-26 18:49:58 +0200 |
commit | 0234795825640022ccd43476e3c679d4e054a46f (patch) | |
tree | 40dcf635f40662aac46a584ac08fd475f854acd0 /spec/lib | |
parent | 94490b63b3c40af9c73db10161f1f5905165309b (diff) | |
download | gitlab-ce-0234795825640022ccd43476e3c679d4e054a46f.tar.gz |
Remove all references to Gitlab::CorrelationIdan-use-labkit-correlation-id
This class has been replaced with Labkit::Correlation::CorrelationId
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/gitlab/tracing_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/tracing_spec.rb b/spec/lib/gitlab/tracing_spec.rb index db75ce2a998..e913bb600ec 100644 --- a/spec/lib/gitlab/tracing_spec.rb +++ b/spec/lib/gitlab/tracing_spec.rb @@ -59,7 +59,7 @@ describe Gitlab::Tracing do it 'returns the correct state for .tracing_url' do expect(described_class).to receive(:tracing_url_enabled?).and_return(tracing_url_enabled?) allow(described_class).to receive(:tracing_url_template).and_return(tracing_url_template) - allow(Gitlab::CorrelationId).to receive(:current_id).and_return(correlation_id) + allow(Labkit::Correlation::CorrelationId).to receive(:current_id).and_return(correlation_id) allow(Gitlab).to receive(:process_name).and_return(process_name) expect(described_class.tracing_url).to eq(tracing_url) |