Merge branch '15133-remove-jobs-api' refs #15133
[arvados.git] / services / api / test / functional / arvados / v1 / keep_services_controller_test.rb
index d571610fc2a9b246626ece2a0ba92aa99a396cb4..41554be87507ba19d9ed8edc40a8a1e2db6f0bad 100644 (file)
@@ -8,7 +8,7 @@ class Arvados::V1::KeepServicesControllerTest < ActionController::TestCase
 
   test "search by service_port with < query" do
     authorize_with :active
-    get :index, {
+    get :index, params: {
       filters: [['service_port', '<', 25107]]
     }
     assert_response :success
@@ -17,7 +17,7 @@ class Arvados::V1::KeepServicesControllerTest < ActionController::TestCase
 
   test "search by service_port with >= query" do
     authorize_with :active
-    get :index, {
+    get :index, params: {
       filters: [['service_port', '>=', 25107]]
     }
     assert_response :success