Skip to content

Commit

Permalink
chore: Change test expectation
Browse files Browse the repository at this point in the history
  • Loading branch information
arpitsrivastava-cb committed Dec 13, 2024
1 parent c08f9dc commit edd83e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/unit/coinbase/address_reputation_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
end

it 'initializes the object with the correct score' do
expect(address_reputation.score).to eq(50)
expect(address_reputation.score).to be(50)
end

it 'raises an error if the API returns an invalid model' do
Expand All @@ -38,7 +38,7 @@
describe '#score' do
subject { address_reputation.score }

it { is_expected.to eq(50) }
it { is_expected.to be(50) }
end

describe '#metadata' do
Expand Down

0 comments on commit edd83e0

Please sign in to comment.