diff options
author | Johan Herland <johan@herland.net> | 2011-05-13 18:43:29 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-13 09:57:16 -0700 |
commit | ebe8621fd798a568ae33eb6a665cb3c758dd3816 (patch) | |
tree | e6274a04bcd9aa246545cc3cb40a502a839f1fc6 /t | |
parent | 4c007ae8351a0a2beba57e2930ed21aed141e51e (diff) | |
download | git-ebe8621fd798a568ae33eb6a665cb3c758dd3816.tar.gz git-ebe8621fd798a568ae33eb6a665cb3c758dd3816.tar.xz |
t5400: Fix a couple of typos
Signed-off-by: Johan Herland <johan@herland.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t5400-send-pack.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t5400-send-pack.sh b/t/t5400-send-pack.sh index b0b2684a1..0eace37a0 100755 --- a/t/t5400-send-pack.sh +++ b/t/t5400-send-pack.sh @@ -190,7 +190,7 @@ test_expect_success 'pushing explicit refspecs respects forcing' ' +refs/heads/master:refs/heads/master ) && parent_head=$(cd parent && git rev-parse --verify master) && - child_head=$(cd parent && git rev-parse --verify master) && + child_head=$(cd child && git rev-parse --verify master) && test "$parent_head" = "$child_head" ' @@ -210,7 +210,7 @@ test_expect_success 'pushing wildcard refspecs respects forcing' ' "+refs/heads/*:refs/heads/*" ) && parent_head=$(cd parent && git rev-parse --verify master) && - child_head=$(cd parent && git rev-parse --verify master) && + child_head=$(cd child && git rev-parse --verify master) && test "$parent_head" = "$child_head" ' |