Commit cf20552a authored by Christian Couder's avatar Christian Couder

Fix daemon initialization output change

Since commit 76d9d89a, 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: default avatarChristian Couder <chriscool@tuxfamily.org>
parent 92c7f967
......@@ -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
'
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment