From: Avery Pennarun Date: Tue, 9 Feb 2010 00:42:15 +0000 (-0500) Subject: Oops. Apparently I didn't run 'make test' after most recent change. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=00889c8ca7017d7b9d07d47843e3a3e245a1de26;p=git.git Oops. Apparently I didn't run 'make test' after most recent change. Thanks to Dan Sabath for pointing that out. --- diff --git a/test.sh b/test.sh index 1446cfeed..c6ecde20b 100755 --- a/test.sh +++ b/test.sh @@ -161,7 +161,8 @@ check_equal "You must provide the --prefix option." "$result" # Check that the exists for a split. ! result=$(git subtree split --prefix=non-existent-directory 2>&1) -check_equal "non-existent-directory does not exist." "$result" +check_equal "'non-existent-directory' does not exist; use 'git subtree add'" \ + "$result" # check if --message works for split+rejoin spl1=$(git subtree split --annotate='*' --prefix subdir --onto FETCH_HEAD --message "Split & rejoin" --rejoin)