Merge branch 'tq/git-ssh-command'
[gitweb.git] / t / t4102-apply-rename.sh
index e3ea3d5114b8f6a09b79c9a1323c563da0c7b170..fae305979a88614bdf33963936d3fce32df83b8c 100755 (executable)
@@ -7,7 +7,6 @@ test_description='git apply handling copy/rename patch.
 
 '
 . ./test-lib.sh
-. "$TEST_DIRECTORY"/lib-prereq-FILEMODE.sh
 
 # setup
 
@@ -53,6 +52,6 @@ EOF
 
 test_expect_success 'apply copy' \
     'git apply --index --stat --summary --apply test-patch &&
-     test "$(cat bar)" = "This is bar" -a "$(cat foo)" = "This is foo"'
+     test "$(cat bar)" = "This is bar" && test "$(cat foo)" = "This is foo"'
 
 test_done