Skip to content

Commit

Permalink
platform_api isn't private, so no need for send
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwlewis committed Jun 20, 2023
1 parent 965efae commit df430ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
def successful_body(app, options = {})
retry_limit = options[:retry_limit] || 100
path = options[:path] ? "/#{options[:path]}" : ''
web_url = app.send(:platform_api).app.info(app.name).fetch("web_url")
web_url = app.platform_api.app.info(app.name).fetch("web_url")
Excon.get("#{web_url}#{path}",
idempotent: true,
expects: 200,
Expand Down

0 comments on commit df430ef

Please sign in to comment.