Commit ea164796 authored by Matija Čupić's avatar Matija Čupić

Remove redundant to_params

parent 976e22e6
...@@ -42,13 +42,13 @@ describe Projects::ClustersController do ...@@ -42,13 +42,13 @@ describe Projects::ClustersController do
go go
expect(assigns(:clusters).count).to eq(20) expect(assigns(:clusters).count).to eq(20)
get :index, namespace_id: project.namespace.to_param, project_id: project, page: 2 get :index, namespace_id: project.namespace, project_id: project, page: 2
expect(assigns(:clusters).count).to eq(1) expect(assigns(:clusters).count).to eq(1)
end end
context 'when only enabled clusters are requested' do context 'when only enabled clusters are requested' do
it 'returns only enabled clusters' do it 'returns only enabled clusters' do
get :index, namespace_id: project.namespace.to_param, project_id: project, scope: 'active' get :index, namespace_id: project.namespace, project_id: project, scope: 'active'
clusters = assigns(:clusters) clusters = assigns(:clusters)
expect(clusters.all? { |cluster| cluster.enabled == true }).to eq(true) expect(clusters.all? { |cluster| cluster.enabled == true }).to eq(true)
end end
...@@ -56,7 +56,7 @@ describe Projects::ClustersController do ...@@ -56,7 +56,7 @@ describe Projects::ClustersController do
context 'when only disabled clusters are requested' do context 'when only disabled clusters are requested' do
it 'returns only disabled clusters' do it 'returns only disabled clusters' do
get :index, namespace_id: project.namespace.to_param, project_id: project, scope: 'inactive' get :index, namespace_id: project.namespace, project_id: project, scope: 'inactive'
clusters = assigns(:clusters) clusters = assigns(:clusters)
expect(clusters.all? { |cluster| cluster.enabled == false }).to eq(true) expect(clusters.all? { |cluster| cluster.enabled == false }).to eq(true)
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