X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0b19ca02c8387ff1eda4ccafb9bd0fda7b79c3b1..40dc04d6fa45b6b727e94986491c06132db4a582:/services/api/test/unit/workflow_test.rb diff --git a/services/api/test/unit/workflow_test.rb b/services/api/test/unit/workflow_test.rb index c7c528828d..26cd7f215e 100644 --- a/services/api/test/unit/workflow_test.rb +++ b/services/api/test/unit/workflow_test.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'test_helper' class WorkflowTest < ActiveSupport::TestCase @@ -85,8 +89,8 @@ class WorkflowTest < ActiveSupport::TestCase definition = "more: etc" w.update_attributes!(definition: definition) w.reload - assert_equal nil, w.name - assert_equal nil, w.description + assert_nil w.name + assert_nil w.description # Workflow name and desc set using definition yaml should be cleared # if definition yaml is cleared @@ -96,8 +100,8 @@ class WorkflowTest < ActiveSupport::TestCase definition = nil w.update_attributes!(definition: definition) w.reload - assert_equal nil, w.name - assert_equal nil, w.description + assert_nil w.name + assert_nil w.description # Workflow name and desc should be set to provided custom values definition = "name: test name 3\ndescription: test desc 3\nother: some more"