t: drop unnecessary terminating semicolon in subshell
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Eric Sunshine committed
Jul 1, 2018 at 20:23 UTC
02779185d5b280488cd1eafb1cdbb35babee5efe
3 files changed
+4
-4
t/t3102-ls-tree-wildcards.sh
+1
-1
@@ -23,7 +23,7 @@ test_expect_success 'ls-tree outside prefix' '
23
cat >expect <<-EOF &&
24
100644 blob $EMPTY_BLOB ../a[a]/three
25
EOF
26
- ( cd aa && git ls-tree -r HEAD "../a[a]"; ) >actual &&
26
+ ( cd aa && git ls-tree -r HEAD "../a[a]" ) >actual &&
27
test_cmp expect actual
28
'
29
t/t4010-diff-pathspec.sh
+2
-2
@@ -111,10 +111,10 @@ test_expect_success 'diff-tree -r with wildcard' '
111
test_expect_success 'setup submodules' '
112
test_tick &&
113
git init submod &&
114
- ( cd submod && test_commit first; ) &&
114
+ ( cd submod && test_commit first ) &&
115
git add submod &&
116
git commit -m first &&
117
- ( cd submod && test_commit second; ) &&
117
+ ( cd submod && test_commit second ) &&
118
git add submod &&
119
git commit -m second
120
'
t/t9400-git-cvsserver-server.sh
+1
-1
@@ -328,7 +328,7 @@ test_expect_success 'cvs update (subdirectories)' \
328
'(for dir in A A/B A/B/C A/D E; do
329
mkdir $dir &&
330
echo "test file in $dir" >"$dir/file_in_$(echo $dir|sed -e "s#/# #g")" &&
331
- git add $dir;
331
+ git add $dir
332
done) &&
333
git commit -q -m "deep sub directory structure" &&
334
git push gitcvs.git >/dev/null &&