Commit 0e061adf authored by mortyccp's avatar mortyccp

Fix lint errors

parent 3a62f156
...@@ -114,16 +114,16 @@ describe Gitlab::Middleware::Go do ...@@ -114,16 +114,16 @@ describe Gitlab::Middleware::Go do
env['REMOTE_ADDR'] = "192.168.0.1" env['REMOTE_ADDR'] = "192.168.0.1"
env['HTTP_AUTHORIZATION'] = ActionController::HttpAuthentication::Basic.encode_credentials(current_user.username, personal_access_token.token) env['HTTP_AUTHORIZATION'] = ActionController::HttpAuthentication::Basic.encode_credentials(current_user.username, personal_access_token.token)
end end
context 'with api scope' do context 'with api scope' do
it_behaves_like 'authenticated' it_behaves_like 'authenticated'
end end
context 'with read_user scope' do context 'with read_user scope' do
before do before do
personal_access_token.update_attribute(:scopes, [:read_user]) personal_access_token.update_attribute(:scopes, [:read_user])
end end
it_behaves_like 'unauthorized' it_behaves_like 'unauthorized'
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment