diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2022-01-27 20:47:39 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2022-01-27 20:47:39 +0100 |
commit | e6d31fc97af92ef59741b3948c984a7d1b2b70f3 (patch) | |
tree | f87808ffced5d05141303894d32dc780d68ba039 /test/units/testsuite-50.sh | |
parent | Merge pull request #22132 from joanbm/main (diff) | |
download | systemd-e6d31fc97af92ef59741b3948c984a7d1b2b70f3.tar.xz systemd-e6d31fc97af92ef59741b3948c984a7d1b2b70f3.zip |
tree-wide: fix typo
Diffstat (limited to '')
-rwxr-xr-x | test/units/testsuite-50.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/units/testsuite-50.sh b/test/units/testsuite-50.sh index ff4f77def2..7ddb20601a 100755 --- a/test/units/testsuite-50.sh +++ b/test/units/testsuite-50.sh @@ -323,7 +323,7 @@ systemctl is-active testservice-50e.service # ExtensionDirectories will set up an overlay mkdir -p "${image_dir}/app0" "${image_dir}/app1" -systemd-run -P --property ExtensionDirectories="${image_dir}/nonexistant" --property RootImage="${image}.raw" cat /opt/script0.sh && { echo 'unexpected success'; exit 1; } +systemd-run -P --property ExtensionDirectories="${image_dir}/nonexistent" --property RootImage="${image}.raw" cat /opt/script0.sh && { echo 'unexpected success'; exit 1; } systemd-run -P --property ExtensionDirectories="${image_dir}/app0" --property RootImage="${image}.raw" cat /opt/script0.sh && { echo 'unexpected success'; exit 1; } systemd-dissect --mount /usr/share/app0.raw "${image_dir}/app0" systemd-dissect --mount /usr/share/app1.raw "${image_dir}/app1" |