@cryptotaxi247 / kubo / commits / eb1ecf878

files2.0: more regreussion fixes

License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com>

Łukasz Magiera committed Dec 1, 2018 at 00:44 UTC eb1ecf878984cfd1169474f8ed0ef3260094ca01
1 file changed +2 -2
test/sharness/t0040-add-and-cat.sh
+2 -2
@@ -413,7 +413,7 @@ test_add_named_pipe() {
413 test_expect_code 1 ipfs add named-pipe 2>actual &&
414 STAT=$(generic_stat named-pipe) &&
415 rm named-pipe &&
416 - grep "Error: Unrecognized file type for named-pipe: $STAT" actual &&
416 + grep "Error: unrecognized file type for named-pipe: $STAT" actual &&
417 grep USAGE actual &&
418 grep "ipfs add" actual
419 '
@@ -423,7 +423,7 @@ test_add_named_pipe() {
423 mkfifo named-pipe-dir/named-pipe &&
424 STAT=$(generic_stat named-pipe-dir/named-pipe) &&
425 test_expect_code 1 ipfs add -r named-pipe-dir 2>actual &&
426 - printf "Error:$err_prefix Unrecognized file type for named-pipe-dir/named-pipe: $STAT\n" >expected &&
426 + printf "Error:$err_prefix unrecognized file type for named-pipe-dir/named-pipe: $STAT\n" >expected &&
427 rm named-pipe-dir/named-pipe &&
428 rmdir named-pipe-dir &&
429 test_cmp expected actual