Skip to content

Commit 5f65370

Browse files
committed
Explicit hash
1 parent 5ac83a0 commit 5f65370

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

spec/datadog/core/telemetry/event_spec.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,10 @@ def contain_configuration(*array)
219219
expect(event.type).to eq('logs')
220220
expect(event.payload).to eq(
221221
{
222-
logs: [
222+
logs: [{
223223
message: 'Hi',
224224
level: 'ERROR'
225-
]
225+
}]
226226
}
227227
)
228228
end
@@ -232,10 +232,10 @@ def contain_configuration(*array)
232232
expect(event.type).to eq('logs')
233233
expect(event.payload).to eq(
234234
{
235-
logs: [
235+
logs: [{
236236
message: 'Hi',
237237
level: 'DEBUG'
238-
]
238+
}]
239239
}
240240
)
241241
end
@@ -245,10 +245,10 @@ def contain_configuration(*array)
245245
expect(event.type).to eq('logs')
246246
expect(event.payload).to eq(
247247
{
248-
logs: [
248+
logs: [{
249249
message: 'Hi',
250250
level: 'WARN'
251-
]
251+
}]
252252
}
253253
)
254254
end

0 commit comments

Comments
 (0)