diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2023-02-05 21:41:24 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2023-02-06 09:19:04 +0100 |
commit | 7a17e41dcfad2a45d3acced2596f7359bbcd1075 (patch) | |
tree | 1014afaf36886db05f222ff495b75bf2827b3142 /test/units/testsuite-60.sh | |
parent | NEWS: adjust commas, avoid double negative (diff) | |
download | systemd-7a17e41dcfad2a45d3acced2596f7359bbcd1075.tar.xz systemd-7a17e41dcfad2a45d3acced2596f7359bbcd1075.zip |
test: drop whitespace after shell redirection operators
(The one case that is left unchanged is '< <(subcommand)'.)
This way, the style with no gap was already dominant. This way, the reader
immediately knows that ' < ' is a comparison operator and ' << ' is a shift.
In a few cases, replace custom EOF replacement by just EOF. There is no point
in using someting like "_EOL" unless "EOF" appears in the text.
Diffstat (limited to 'test/units/testsuite-60.sh')
-rwxr-xr-x | test/units/testsuite-60.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/units/testsuite-60.sh b/test/units/testsuite-60.sh index a29364568d..1b45ba21fb 100755 --- a/test/units/testsuite-60.sh +++ b/test/units/testsuite-60.sh @@ -158,7 +158,7 @@ test_issue_20329() { unit=$(systemd-escape --suffix mount --path "$tmpdir") # Set up test mount unit - cat > /run/systemd/system/"$unit" <<EOF + cat >/run/systemd/system/"$unit" <<EOF [Mount] What=tmpfs Where=$tmpdir |