From f06b9ca126d7a804ddfc64aa58884f72e962d414 Mon Sep 17 00:00:00 2001 From: Christian Couder Date: Thu, 20 Nov 2014 20:11:03 +0100 Subject: [PATCH] Rename test_launch_ipfs_mount into test_launch_ipfs_daemon_and_mount License: MIT Signed-off-by: Christian Couder --- test/lib/test-lib.sh | 2 +- test/t0030-mount.sh | 2 +- test/t0040-add-and-cat.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/lib/test-lib.sh b/test/lib/test-lib.sh index 9b0586a91..fce00583b 100644 --- a/test/lib/test-lib.sh +++ b/test/lib/test-lib.sh @@ -64,7 +64,7 @@ test_launch_ipfs_daemon() { ' } -test_launch_ipfs_mount() { +test_launch_ipfs_daemon_and_mount() { test_expect_success "ipfs init succeeds" ' export IPFS_DIR="$(pwd)/.go-ipfs" && diff --git a/test/t0030-mount.sh b/test/t0030-mount.sh index cfc99bfcc..3b3091e13 100755 --- a/test/t0030-mount.sh +++ b/test/t0030-mount.sh @@ -15,7 +15,7 @@ if ! test_have_prereq FUSE; then test_done fi -test_launch_ipfs_mount +test_launch_ipfs_daemon_and_mount test_kill_ipfs_daemon diff --git a/test/t0040-add-and-cat.sh b/test/t0040-add-and-cat.sh index 18c56cb97..1be996861 100755 --- a/test/t0040-add-and-cat.sh +++ b/test/t0040-add-and-cat.sh @@ -8,7 +8,7 @@ test_description="Test add and cat commands" . lib/test-lib.sh -test_launch_ipfs_mount +test_launch_ipfs_daemon_and_mount test_expect_success "ipfs add succeeds" ' echo "Hello Worlds!" >mountdir/hello.txt &&