Skip to content

Commit

Permalink
Fix rc reference
Browse files Browse the repository at this point in the history
  • Loading branch information
dann1 committed Oct 13, 2023
1 parent 5829fe6 commit 4a89e5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/lib/common.rb
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,13 @@ def verify_sr_delete(sr_id)
when 500
raise 'Server error, check logs'
else
raise "Unexpected error code: #{rc}"
raise "Unexpected error code: #{response.code}"
end
end
when 500
raise 'Server error, check logs'
else
raise "Unexpected error code: #{rc}"
raise "Unexpected error code: #{response.code}"
end
end

Expand Down

0 comments on commit 4a89e5a

Please sign in to comment.