Merge branch '14988-wb-rails5-upgrade'
[arvados.git] / services / api / test / functional / arvados / v1 / pipeline_instances_controller_test.rb
index 933ce7d9c985921dfeb38a9f779424b28806dec4..a76151150fe873b950aaaf72bcd1ac403c1cbc54 100644 (file)
@@ -1,10 +1,14 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 require 'test_helper'
 
 class Arvados::V1::PipelineInstancesControllerTest < ActionController::TestCase
 
   test 'create pipeline with components copied from template' do
     authorize_with :active
-    post :create, {
+    post :create, params: {
       pipeline_instance: {
         pipeline_template_uuid: pipeline_templates(:two_part).uuid
       }
@@ -16,7 +20,7 @@ class Arvados::V1::PipelineInstancesControllerTest < ActionController::TestCase
 
   test 'create pipeline with no template' do
     authorize_with :active
-    post :create, {
+    post :create, params: {
       pipeline_instance: {
         components: {}
       }
@@ -33,7 +37,7 @@ class Arvados::V1::PipelineInstancesControllerTest < ActionController::TestCase
       authorize_with :active
       pi_uuid = pipeline_instances(:job_child_pipeline_with_components_at_level_2).uuid
 
-      post :cancel, {id: pi_uuid, cascade: cascade}
+      post :cancel, params: {id: pi_uuid, cascade: cascade}
       assert_response :success
 
       pi = PipelineInstance.where(uuid: pi_uuid).first