Skip to content

Commit

Permalink
Fix spec/request_spec.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-balitskyi committed Jul 26, 2024
1 parent 808aeaa commit 000ba6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/request_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

it "parses the error" do
expect { client.health }.to raise_error do |error|
expect(error).to be_a(Seam::SeamHttpApiError)
expect(error).to be_a(Seam::Errors::SeamHttpApiError)
expect(error.message).to eq(message)
expect(error.code).to eq(type)
expect(error.request_id).to eq(request_id)
Expand All @@ -48,7 +48,7 @@

it "parses the error" do
expect { client.health }.to raise_error do |error|
expect(error).to be_a(Seam::SeamHttpApiError)
expect(error).to be_a(Seam::Errors::SeamHttpApiError)
expect(error.message).to eq(message)
expect(error.code).to eq(type)
expect(error.request_id).to eq(request_id)
Expand Down

0 comments on commit 000ba6b

Please sign in to comment.