diff options
| author | AbdAlRahman Gad <abdobngad@gmail.com> | 2024-08-08 19:32:01 +0300 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-08-08 10:27:00 -0700 |
| commit | 95fc11b6fd7989314180da56e3a8989700f42b9a (patch) | |
| tree | 122aabbd15aa62e40dc2288f7aaa50a5a10c9e64 | |
| parent | t7004: remove space after redirect operators (diff) | |
| download | git-95fc11b6fd7989314180da56e3a8989700f42b9a.tar.gz git-95fc11b6fd7989314180da56e3a8989700f42b9a.zip | |
t7004: one command per line
One of the tests in t7004 has multiple commands on a single line,
which is discouraged. Adapt these by splitting up these into one
line per command.
Signed-off-by: AbdAlRahman Gad <abdobngad@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rwxr-xr-x | t/t7004-tag.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/t/t7004-tag.sh b/t/t7004-tag.sh index 3100a4c219..09ce287559 100755 --- a/t/t7004-tag.sh +++ b/t/t7004-tag.sh @@ -213,9 +213,11 @@ mytag EOF test_expect_success \ 'trying to delete tags without params should succeed and do nothing' ' - git tag -l >actual && test_cmp expect actual && + git tag -l >actual && + test_cmp expect actual && git tag -d && - git tag -l >actual && test_cmp expect actual + git tag -l >actual && + test_cmp expect actual ' test_expect_success \ |
