[ARVADOS] updated: 2225be2cb92613495450528ba24a9ca14f232748
Git user
git at public.curoverse.com
Tue Nov 22 08:45:14 EST 2016
Summary of changes:
sdk/cli/test/test_arv-keep-put.rb | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
via 2225be2cb92613495450528ba24a9ca14f232748 (commit)
from 50128b53da4003912635b03fb27b5be2c5beaca1 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 2225be2cb92613495450528ba24a9ca14f232748
Author: Lucas Di Pentima <lucas at curoverse.com>
Date: Tue Nov 22 10:37:13 2016 -0300
10383: Fixed integration tests that got broken when the resume feature was implemented.
diff --git a/sdk/cli/test/test_arv-keep-put.rb b/sdk/cli/test/test_arv-keep-put.rb
index 8769cde..e6ead25 100644
--- a/sdk/cli/test/test_arv-keep-put.rb
+++ b/sdk/cli/test/test_arv-keep-put.rb
@@ -40,7 +40,7 @@ class TestArvKeepPut < Minitest::Test
def test_raw_file
out, err = capture_subprocess_io do
- assert arv_put('--no-resume', '--raw', './tmp/foo')
+ assert arv_put('--no-cache', '--raw', './tmp/foo')
end
$stderr.write err
assert_match '', err
@@ -87,7 +87,7 @@ class TestArvKeepPut < Minitest::Test
def test_as_stream
out, err = capture_subprocess_io do
- assert arv_put('--no-resume', '--as-stream', './tmp/foo')
+ assert arv_put('--no-cache', '--as-stream', './tmp/foo')
end
$stderr.write err
assert_match '', err
@@ -96,7 +96,7 @@ class TestArvKeepPut < Minitest::Test
def test_progress
out, err = capture_subprocess_io do
- assert arv_put('--manifest', '--progress', './tmp/foo')
+ assert arv_put('--no-cache', '--manifest', '--progress', './tmp/foo')
end
assert_match /%/, err
assert match_collection_uuid(out)
@@ -104,7 +104,7 @@ class TestArvKeepPut < Minitest::Test
def test_batch_progress
out, err = capture_subprocess_io do
- assert arv_put('--no-resume', '--manifest', '--batch-progress', './tmp/foo')
+ assert arv_put('--no-cache', '--manifest', '--batch-progress', './tmp/foo')
end
assert_match /: 0 written 3 total/, err
assert_match /: 3 written 3 total/, err
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list