Fix rubocop

Stephen Paul Weber created

Change summary

test/test_helper.rb | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)

Detailed changes

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