Skip to content

Commit

Permalink
Address lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahchen6 committed Oct 29, 2024
1 parent d1e19a2 commit 615132e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/datadog/tracing/metadata/tagging_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
expected_tag = ['{"id"=>123}', '{"id" => 123}']
expect { set_tags }
.to change { test_object.get_tag('user') }
.from(nil).to satisfy { |tag| expected_tag.include?(tag) }
.from(nil).to(satisfy { |tag| expected_tag.include?(tag) })
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion spec/datadog/tracing/remote_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
it 'sets errored apply state' do
process_config
expect(content.apply_state).to eq(3)
expect(content.apply_error).to include("Error") & include("process_config")
expect(content.apply_error).to include('Error') & include('process_config')
end
end

Expand Down

0 comments on commit 615132e

Please sign in to comment.