Skip to content

Commit

Permalink
Rubocop fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vipulnsward committed May 4, 2024
1 parent 2bb5229 commit 9670955
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/uploadcare/entity/conversion/document_converter_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ module Conversion
VCR.use_cassette('document_convert_info') do
uuid = 'cd7a51d4-9776-4749-b749-c9fc691891f1'
response = subject.info(uuid)
expect(response.value!.has_key?(:format)).to be_truthy
expect(response.value!.key?(:format)).to be_truthy
document_formats = response.value![:format]
expect(document_formats.has_key?(:conversion_formats)).to be_truthy
expect(document_formats.key?(:conversion_formats)).to be_truthy
end
end
end
Expand Down

0 comments on commit 9670955

Please sign in to comment.