test: add missing &&s

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
Felipe Contreras
2019-06-03 13:06:55 -05:00
parent 54cec85f94
commit e3009683f8

View File

@@ -844,7 +844,7 @@ test_expect_failure 'push updates notes' '
(
cd gitrepo &&
echo two > content &&
git commit -a -m two
git commit -a -m two &&
git push
) &&
@@ -898,7 +898,7 @@ test_expect_success 'push merged named branch' '
git push
) &&
cat > expected <<-EOF
cat > expected <<-EOF &&
Merge
three
two
@@ -939,7 +939,7 @@ test_expect_success 'push tag different branch' '
cd hgrepo &&
echo one > content &&
hg add content &&
hg commit -m one
hg commit -m one &&
hg branch feature &&
echo two > content &&
hg commit -m two