From afc0e77320d9aa4b78c53ee490df530712cf667b Mon Sep 17 00:00:00 2001 From: Jakub Sztandera Date: Tue, 7 Mar 2017 23:39:39 +0100 Subject: [PATCH] test: skip not necessary var assigment License: MIT Signed-off-by: Jakub Sztandera --- test/sharness/t0270-filestore.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sharness/t0270-filestore.sh b/test/sharness/t0270-filestore.sh index a72ea90cc..7a54bfe44 100755 --- a/test/sharness/t0270-filestore.sh +++ b/test/sharness/t0270-filestore.sh @@ -49,13 +49,13 @@ test_filestore_adds() { assert_repo_size_less_than 1000000 test_expect_success "normal add with fscache doesnt duplicate data" ' - HASH2=$(ipfs add --raw-leaves --fscache -r -q somedir | tail -n1) + ipfs add --raw-leaves --fscache -r -q somedir > /dev/null ' assert_repo_size_less_than 1000000 test_expect_success "normal add without fscache duplicates data" ' - HASH2=$(ipfs add --raw-leaves -r -q somedir | tail -n1) + ipfs add --raw-leaves -r -q somedir > /dev/null ' assert_repo_size_greater_than 1000000