@cryptotaxi247 / kubo / commits / bbcc259ea

fix(sharness): Initializing daemon... output

Brian Tiger Chow committed Jan 27, 2015 at 17:03 UTC bbcc259eaffc4ef8630610f76f71184c3ca3d353
1 file changed +2 -1
test/sharness/lib/test-lib.sh
+2 -1
@@ -88,7 +88,8 @@ test_launch_ipfs_daemon() {
88
89 test_expect_success FUSE "'ipfs daemon' output looks good" '
90 IPFS_PID=$! &&
91 - echo "API server listening on /ip4/127.0.0.1/tcp/5001" >expected &&
91 + echo "Initializing daemon..." >expected &&
92 + echo "API server listening on /ip4/127.0.0.1/tcp/5001" >>expected &&
93 test_cmp_repeat_10_sec expected actual ||
94 fsh cat daemon_err
95 '