Skip to content

Commit

Permalink
Fix request specs failures on id format
Browse files Browse the repository at this point in the history
Caused by collision of ManageIQ#15430
and ManageIQ#15186
  • Loading branch information
imtayadeway committed Jul 5, 2017
1 parent e1fbd92 commit 5bf105a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/requests/api/automation_requests_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
run_get automation_requests_url(automation_request.id)

expected = {
"id" => automation_request.id,
"id" => automation_request.compressed_id,
"href" => a_string_matching(automation_requests_url(automation_request.id))
}
expect(response).to have_http_status(:ok)
Expand Down
2 changes: 1 addition & 1 deletion spec/requests/api/provision_requests_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
run_get provision_requests_url(provision_request.id)

expected = {
"id" => provision_request.id,
"id" => provision_request.compressed_id,
"href" => a_string_matching(provision_requests_url(provision_request.id))
}
expect(response).to have_http_status(:ok)
Expand Down

0 comments on commit 5bf105a

Please sign in to comment.