Skip to content

Commit d8ce8cc

Browse files
committed
Fix rubocop offense
1 parent 59ac305 commit d8ce8cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/client/test_identity_token.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def test_410_retry
100100
def expect_http_method(mock, access_token, expires_on)
101101
if AzureBlob::WorkloadIdentity.federated_token?
102102
expires_in = expires_on - Time.now.to_i
103-
mock.expect :post, JSON.generate({ access_token: access_token, expires_in: expires_in }), [String]
103+
mock.expect :post, JSON.generate({ access_token: access_token, expires_in: expires_in }), [ String ]
104104
else
105105
mock.expect :get, JSON.generate({ access_token: access_token, expires_on: expires_on.to_s })
106106
end

0 commit comments

Comments
 (0)