diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2013-10-14 11:03:48 -0700 |
---|---|---|
committer | Jonathan Nieder <jrnieder@gmail.com> | 2013-10-14 11:03:48 -0700 |
commit | 13f17f338c7edfdd60dc152c82f6393a3c4bc381 (patch) | |
tree | 352d2e4a8e391a5b72e7781f6b33d70ccf165e95 /t | |
parent | 92d2afd563afca4d6b4c20c7e2e859bc7219a3b1 (diff) | |
parent | 7ffd18fce1eef2670661c2e7fd0cb3ef0b8b7fb7 (diff) | |
download | git-13f17f338c7edfdd60dc152c82f6393a3c4bc381.tar.gz |
Merge branch 'jx/clean-interactive'
* jx/clean-interactive:
path-utils test: rename mingw_path function to print_path
Diffstat (limited to 't')
-rwxr-xr-x | t/t0060-path-utils.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t0060-path-utils.sh b/t/t0060-path-utils.sh index 3a48de20d8..2bd5e32745 100755 --- a/t/t0060-path-utils.sh +++ b/t/t0060-path-utils.sh @@ -8,13 +8,13 @@ test_description='Test various path utilities' . ./test-lib.sh norm_path() { - expected=$(test-path-utils mingw_path "$2") + expected=$(test-path-utils print_path "$2") test_expect_success $3 "normalize path: $1 => $2" \ "test \"\$(test-path-utils normalize_path_copy '$1')\" = '$expected'" } relative_path() { - expected=$(test-path-utils mingw_path "$3") + expected=$(test-path-utils print_path "$3") test_expect_success $4 "relative path: $1 $2 => $3" \ "test \"\$(test-path-utils relative_path '$1' '$2')\" = '$expected'" } |