From: Johan Herland Date: Fri, 13 May 2011 16:43:29 +0000 (+0200) Subject: t5400: Fix a couple of typos X-Git-Tag: v1.7.5.2~29 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ebe8621fd798a568ae33eb6a665cb3c758dd3816;p=git.git t5400: Fix a couple of typos Signed-off-by: Johan Herland Signed-off-by: Junio C Hamano --- 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" '