Skip to content

Commit 545c272

Browse files
committed
fix specs
1 parent 260cdd6 commit 545c272

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

spec/impl/data_system/streaming_headers_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module DataSystem
2222
)
2323
end
2424

25-
let(:synchronizer) { StreamingDataSourceBuilder.new.build(sdk_key, config) }
25+
let(:synchronizer) { LaunchDarkly::DataSystem::StreamingDataSourceBuilder.new.build(sdk_key, config) }
2626

2727
describe "on_error callback" do
2828
it "triggers FDv1 fallback when X-LD-FD-FALLBACK header is true" do

spec/impl/data_system/streaming_synchronizer_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def initialize(type, data = nil)
3434
end
3535

3636
describe '#process_message' do
37-
let(:synchronizer) { StreamingDataSourceBuilder.new.build(sdk_key, config) }
37+
let(:synchronizer) { LaunchDarkly::DataSystem::StreamingDataSourceBuilder.new.build(sdk_key, config) }
3838
let(:change_set_builder) { LaunchDarkly::Interfaces::DataSystem::ChangeSetBuilder.new }
3939
let(:envid) { nil }
4040

@@ -312,7 +312,7 @@ def initialize(type, data = nil)
312312
end
313313

314314
describe 'diagnostic event recording' do
315-
let(:synchronizer) { StreamingDataSourceBuilder.new.build(sdk_key, config) }
315+
let(:synchronizer) { LaunchDarkly::DataSystem::StreamingDataSourceBuilder.new.build(sdk_key, config) }
316316

317317
it "logs successful connection when diagnostic_accumulator is provided" do
318318
diagnostic_accumulator = double("DiagnosticAccumulator")

0 commit comments

Comments
 (0)