Skip to content

Commit ed569b9

Browse files
authored
Expect 'ecommerce' estimate type returned instead of deprecated 'ship… (#75)
* Expect 'ecommerce' estimate type returned instead of deprecated 'shipping' type * Update test to avoid issue with newest project name
1 parent 1825fc9 commit ed569b9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spec/integration/estimates_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
create_order: false
8787
)
8888

89-
expect(create_estimate_response.data.type).to eq 'shipping'
89+
expect(create_estimate_response.data.type).to eq 'ecommerce'
9090
expect(create_estimate_response.data.mass_g).to be >= 10_000
9191
end
9292

spec/integration/projects_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@
7474
it 'retrieves projects in the requested language' do
7575
projects_response = Patch::Project.retrieve_projects(accept_language: 'fr')
7676

77-
expect(projects_response.data.first.name).to include 'Démo' # French
77+
expect(projects_response.data.last.name).to include 'Démo' # French
7878

79-
project_id = projects_response.data.first.id
79+
project_id = projects_response.data.last.id
8080
project_response = Patch::Project.retrieve_project(project_id, accept_language: 'fr')
8181
expect(project_response.data.name).to include 'Démo' # Frenc
8282
end

0 commit comments

Comments
 (0)