diff options
author | Eric Sunshine <sunshine@sunshineco.com> | 2018-07-02 02:24:04 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-07-16 23:38:47 +0200 |
commit | cff4243db9eec386c17222d545ec7dbf51768672 (patch) | |
tree | a078a9c392c1815e2ebda25fb04deb4add555258 /t/t9811-git-p4-label-import.sh | |
parent | t7000-t7999: fix broken &&-chains (diff) | |
download | git-cff4243db9eec386c17222d545ec7dbf51768672.tar.xz git-cff4243db9eec386c17222d545ec7dbf51768672.zip |
t9000-t9999: fix broken &&-chains
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9811-git-p4-label-import.sh')
-rwxr-xr-x | t/t9811-git-p4-label-import.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9811-git-p4-label-import.sh b/t/t9811-git-p4-label-import.sh index decb66ba30..602b0a5d5c 100755 --- a/t/t9811-git-p4-label-import.sh +++ b/t/t9811-git-p4-label-import.sh @@ -133,7 +133,7 @@ test_expect_success 'export git tags to p4' ' p4 labels ... | grep LIGHTWEIGHT_TAG && p4 label -o GIT_TAG_1 | grep "tag created in git:xyzzy" && p4 sync ...@GIT_TAG_1 && - ! test -f main/f10 + ! test -f main/f10 && p4 sync ...@GIT_TAG_2 && test -f main/f10 ) |