Skip to content

Commit

Permalink
rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jchen293 committed Jul 24, 2024
1 parent e34c4af commit 3395864
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/claim_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
)
expect(all_claims[EasyPost::InternalUtilities::Constants::FILTERS_KEY]).to be_a(Hash)

insurance_array = all_claims.claims
claim_array = all_claims.claims

expect(insurance_array.count).to be <= Fixture.page_size
expect(claim_array.count).to be <= Fixture.page_size
expect(all_claims.has_more).not_to be_nil
expect(insurance_array).to all(be_an_instance_of(EasyPost::Models::Claim))
expect(claim_array).to all(be_an_instance_of(EasyPost::Models::Claim))
end
end

Expand Down

0 comments on commit 3395864

Please sign in to comment.