Skip to content

Commit

Permalink
Rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
mullermp committed Sep 16, 2024
1 parent 7807fba commit 6acee45
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gems/aws-crt/spec/checksums/crc_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ def int32_to_base64(num)
]
test_cases.each do |test_case|
it "produces the correct checksum for '#{test_case[:str]}'" do
checksum = int32_to_base64(Aws::Crt::Checksums.crc64nvme(test_case[:str]))
checksum = int32_to_base64(
Aws::Crt::Checksums.crc64nvme(test_case[:str])
)
expect(checksum).to eq(test_case[:expected])
end
end
Expand Down

0 comments on commit 6acee45

Please sign in to comment.