Small fix to service account spec

This commit is contained in:
Sérgio Gomes 2014-08-14 17:06:44 +01:00
parent 78ff182905
commit 20e9a9bdc6
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ describe Google::APIClient::JWTAsserter do
expect(jwt).not_to eq(nil)
claim = JWT.decode(jwt, @key.public_key, true)
claim = claim.first if claim.respond_to? :first
claim = claim[0] if claim[0]
expect(claim["iss"]).to eq('client1')
expect(claim["scope"]).to eq('scope1 scope2')
end