diff --git a/test/test_helper.rb b/test/test_helper.rb index a4102aed39f778cff0a0febf7400e1643d4bb19d..5db6a0d46bc8fa3ac71d3f4af5a06998b6c0d7a3 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -510,10 +510,12 @@ module Minitest expires_in: 3600 }.to_json - WebMock.stub_request(:post, "https://api.bandwidth.com/api/v1/oauth2/token") - .to_return(status: 200, body: oauth_body, headers: { - "Content-Type" => "application/json" - }) + WebMock.stub_request( + :post, "https://api.bandwidth.com/api/v1/oauth2/token" + ).to_return( + status: 200, body: oauth_body, + headers: { "Content-Type" => "application/json" } + ) super end