X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d677ef9c9b8dda9592be9e350c71e76058fc2c57..7f6d2dbe9ce1a294b4be897e79d612d8c1db71d0:/sdk/cli/test/test_arv-collection-create.rb diff --git a/sdk/cli/test/test_arv-collection-create.rb b/sdk/cli/test/test_arv-collection-create.rb index d1f4a51940..18bef403b7 100644 --- a/sdk/cli/test/test_arv-collection-create.rb +++ b/sdk/cli/test/test_arv-collection-create.rb @@ -7,6 +7,8 @@ class TestCollectionCreate < Minitest::Test end def test_small_collection + skip "Waiting unitl #4534 is implemented" + uuid = Digest::MD5.hexdigest(foo_manifest) + '+' + foo_manifest.size.to_s out, err = capture_subprocess_io do assert_arv('--format', 'uuid', 'collection', 'create', '--collection', { @@ -14,9 +16,7 @@ class TestCollectionCreate < Minitest::Test manifest_text: foo_manifest }.to_json) end - - match = /^([0-9a-z]{5}-4zz18-[0-9a-z]{15})?$/.match(out) - assert_equal true, (match and match[1] and !match[1].nil?) + assert /^([0-9a-z]{5}-4zz18-[0-9a-z]{15})?$/.match(out) assert_equal '', err $stderr.puts err end