From 240dbc494d196c2152d1dc976e3d9627fa300fdf Mon Sep 17 00:00:00 2001 From: Stephen Paul Weber Date: Wed, 11 Mar 2026 08:52:24 -0500 Subject: [PATCH] Fix rubocop --- test/test_helper.rb | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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