Fix daemon initialization output change

Since commit 76d9d89aff, there is
"Initializing daemon..." printed on the standard output when
the daemon is started.

This means that tests have to be fixed accordingly.

License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
This commit is contained in:
Christian Couder 2015-01-27 23:24:49 +01:00
parent 92c7f96780
commit cf20552af8

View File

@ -88,7 +88,8 @@ test_launch_ipfs_daemon() {
test_expect_success FUSE "'ipfs daemon' output looks good" '
IPFS_PID=$! &&
echo "API server listening on /ip4/127.0.0.1/tcp/5001" >expected &&
echo "Initializing daemon..." >expected &&
echo "API server listening on /ip4/127.0.0.1/tcp/5001" >>expected &&
test_cmp_repeat_10_sec expected actual ||
fsh cat daemon_err
'