Use normalcase for variable numbers.

This commit is contained in:
Kazuhiro Serizawa 2017-02-25 23:15:17 +09:00
parent 198e766bcd
commit 9fda76427a
1 changed files with 3 additions and 3 deletions

View File

@ -132,10 +132,10 @@ shared_examples 'apply/apply! are OK' do
end end
it 'should fetch a new token if the current one is expired' do it 'should fetch a new token if the current one is expired' do
token_1 = '1/abcdef1234567890' token1 = '1/abcdef1234567890'
token_2 = '2/abcdef1234567891' token2 = '2/abcdef1234567891'
[token_1, token_2].each do |t| [token1, token2].each do |t|
make_auth_stubs access_token: t make_auth_stubs access_token: t
md = { foo: 'bar' } md = { foo: 'bar' }
got = @client.apply(md) got = @client.apply(md)