Skip to content

Commit

Permalink
remove extra newline from expected command output
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Steven Allen <[email protected]>
  • Loading branch information
Stebalien committed May 17, 2018
1 parent d8d93f6 commit adedd02
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/sharness/t0090-get.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ test_ipfs_get_flag() {
'

test_expect_success "ipfs get $flag output looks good" '
printf "%s\n\n" "Saving archive to $HASH$ext" >expected &&
printf "%s\n" "Saving archive to $HASH$ext" >expected &&
test_cmp expected actual
'

Expand Down Expand Up @@ -51,7 +51,7 @@ test_get_cmd() {
'

test_expect_success "ipfs get output looks good" '
printf "%s\n\n" "Saving file(s) to $HASH" >expected &&
printf "%s\n" "Saving file(s) to $HASH" >expected &&
test_cmp expected actual
'

Expand All @@ -70,7 +70,7 @@ test_get_cmd() {
'

test_expect_success "ipfs get output looks good" '
printf "%s\n\n" "Saving file(s) to $HASH2" >expected2 &&
printf "%s\n" "Saving file(s) to $HASH2" >expected2 &&
test_cmp expected2 actual2
'

Expand All @@ -94,7 +94,7 @@ test_get_cmd() {
'

test_expect_success "ipfs get output looks good (directory)" '
printf "%s\n\n" "Saving file(s) to $HASH2" >expected &&
printf "%s\n" "Saving file(s) to $HASH2" >expected &&
test_cmp expected actual
'

Expand All @@ -117,7 +117,7 @@ test_get_cmd() {
'

test_expect_success "ipfs get -a -C output looks good (directory)" '
printf "%s\n\n" "Saving archive to $HASH2.tar.gz" >expected &&
printf "%s\n" "Saving archive to $HASH2.tar.gz" >expected &&
test_cmp expected actual
'

Expand Down

0 comments on commit adedd02

Please sign in to comment.