X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/44c95f99098fa6c6acbfa82d4b6cbc6015eb6e39..3aaefcb3c76ff470b475d950398d01255e87712a:/apps/workbench/test/controllers/workflows_controller_test.rb diff --git a/apps/workbench/test/controllers/workflows_controller_test.rb b/apps/workbench/test/controllers/workflows_controller_test.rb index d73809a266..0877e59328 100644 --- a/apps/workbench/test/controllers/workflows_controller_test.rb +++ b/apps/workbench/test/controllers/workflows_controller_test.rb @@ -6,7 +6,7 @@ require 'test_helper' class WorkflowsControllerTest < ActionController::TestCase test "index" do - get :index, {}, session_for(:active) + get :index, params: {}, session: session_for(:active) assert_response :success assert_includes @response.body, 'Valid workflow with no definition yaml' end @@ -16,7 +16,7 @@ class WorkflowsControllerTest < ActionController::TestCase wf = api_fixture('workflows')['workflow_with_input_specifications'] - get :show, {id: wf['uuid']}, session_for(:active) + get :show, params: {id: wf['uuid']}, session: session_for(:active) assert_response :success assert_includes @response.body, "a short label for this parameter (optional)"