We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 385f6fa commit 8d3bd5bCopy full SHA for 8d3bd5b
spec/datadog/core/telemetry/event/synth_app_client_configuration_change_spec.rb
@@ -4,8 +4,11 @@
4
require 'datadog/core/telemetry/metric'
5
6
RSpec.describe Datadog::Core::Telemetry::Event::SynthAppClientConfigurationChange do
7
- subject(:event) { described_class.new(
8
- components: Datadog.send(:components)) }
+ subject(:event) {
+ described_class.new(
9
+ components: Datadog.send(:components)
10
+ )
11
+ }
12
13
it 'contains only the configuration' do
14
expect(event.payload.keys).to eq([:configuration])
spec/datadog/core/telemetry/worker_spec.rb
@@ -41,7 +41,8 @@
41
42
let(:initial_event) do
43
Datadog::Core::Telemetry::Event::AppStarted.new(
44
- components: Datadog.send(:components))
45
46
end
47
48
before do
0 commit comments