sharness/init: fixed ipfs init output
Juan Batiz-Benet committed
Jan 5, 2015 at 00:09 UTC
c47b808d77a0ffd048a8a40cacb16087cf93a0f7
1 file changed
+1
-2
test/t0020-init.sh
+1
-2
@@ -38,8 +38,7 @@ test_expect_success "ipfs init output looks good" '
38
echo "initializing ipfs node at $IPFS_DIR" >expected &&
39
echo "generating key pair...done" >>expected &&
40
echo "peer identity: $PEERID" >>expected &&
41
- echo "" >> expected &&
42
- echo "to get started, enter: ipfs cat $STARTHASH" >>expected &&
41
+ printf "\\n%s\\n" "to get started, enter: ipfs cat $STARTHASH" >>expected &&
42
test_cmp expected actual_init
43
'
44