X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/29665e2d9a543bffb237d148c3484c03b03e30aa..35658af99f09f2f6768583d65246429f789fc5a2:/services/api/test/functional/arvados/v1/keep_services_controller_test.rb diff --git a/services/api/test/functional/arvados/v1/keep_services_controller_test.rb b/services/api/test/functional/arvados/v1/keep_services_controller_test.rb index 706f73ffda..41554be875 100644 --- a/services/api/test/functional/arvados/v1/keep_services_controller_test.rb +++ b/services/api/test/functional/arvados/v1/keep_services_controller_test.rb @@ -1,10 +1,14 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'test_helper' 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 @@ -13,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