fix sharness test for ipfs init output
Jeromy committed
Dec 30, 2014 at 01:40 UTC
b241c8048f4b42d77b02f0e18df1c4653b21b316
1 file changed
+2
-1
test/t0020-init.sh
+2
-1
@@ -38,7 +38,8 @@ 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 "\nto get started, enter: ipfs cat $STARTHASH" >>expected &&
41
+ echo "" >> expected &&
42
+ echo "to get started, enter: ipfs cat $STARTHASH" >>expected &&
43
test_cmp expected actual_init
44
'
45