X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/62a0bbe9c1f6e3376b25d0f415302eb7dcdf55f3..66088cabf30c5291ad8894e7009d9c9af466c158:/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 cb298f4873..0877e59328 100644 --- a/apps/workbench/test/controllers/workflows_controller_test.rb +++ b/apps/workbench/test/controllers/workflows_controller_test.rb @@ -1,8 +1,12 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + 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 @@ -12,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)"