Commit f8f492e5 authored by Tomasz Maczukin's avatar Tomasz Maczukin

Remove unnecessary parameters

parent a5540b38
...@@ -217,7 +217,7 @@ describe API::API, api: true do ...@@ -217,7 +217,7 @@ describe API::API, api: true do
context 'authorized user' do context 'authorized user' do
context 'when runner is shared' do context 'when runner is shared' do
it 'should not update runner' do it 'should not update runner' do
put api("/runners/#{shared_runner.id}", user), description: 'test' put api("/runners/#{shared_runner.id}", user)
expect(response.status).to eq(403) expect(response.status).to eq(403)
end end
...@@ -225,7 +225,7 @@ describe API::API, api: true do ...@@ -225,7 +225,7 @@ describe API::API, api: true do
context 'when runner is not shared' do context 'when runner is not shared' do
it 'should not update runner without access to it' do it 'should not update runner without access to it' do
put api("/runners/#{specific_runner.id}", user2), description: 'test' put api("/runners/#{specific_runner.id}", user2)
expect(response.status).to eq(403) expect(response.status).to eq(403)
end end
...@@ -244,7 +244,7 @@ describe API::API, api: true do ...@@ -244,7 +244,7 @@ describe API::API, api: true do
context 'unauthorized user' do context 'unauthorized user' do
it 'should not delete runner' do it 'should not delete runner' do
put api("/runners/#{specific_runner.id}"), description: 'test' put api("/runners/#{specific_runner.id}")
expect(response.status).to eq(401) expect(response.status).to eq(401)
end end
...@@ -405,7 +405,7 @@ describe API::API, api: true do ...@@ -405,7 +405,7 @@ describe API::API, api: true do
context 'authorized user without permissions' do context 'authorized user without permissions' do
it 'should not enable runner' do it 'should not enable runner' do
post api("/projects/#{project.id}/runners", user2), runner_id: specific_runner2.id post api("/projects/#{project.id}/runners", user2)
expect(response.status).to eq(403) expect(response.status).to eq(403)
end end
...@@ -413,7 +413,7 @@ describe API::API, api: true do ...@@ -413,7 +413,7 @@ describe API::API, api: true do
context 'unauthorized user' do context 'unauthorized user' do
it 'should not enable runner' do it 'should not enable runner' do
post api("/projects/#{project.id}/runners"), runner_id: specific_runner2.id post api("/projects/#{project.id}/runners")
expect(response.status).to eq(401) expect(response.status).to eq(401)
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