diff options
author | Mats Wichmann <mats@linux.com> | 2024-10-13 18:50:53 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2024-10-19 14:25:22 (GMT) |
commit | b97cba4c79de819eef64cd8fb521d3216a235aa3 (patch) | |
tree | e1a3a9ae6ca16591daa8b2c7b5f3392c2270ec90 /test | |
parent | 80ff4c7530e9b01afa896423fa025f15fe91cb4a (diff) | |
download | SCons-b97cba4c79de819eef64cd8fb521d3216a235aa3.zip SCons-b97cba4c79de819eef64cd8fb521d3216a235aa3.tar.gz SCons-b97cba4c79de819eef64cd8fb521d3216a235aa3.tar.bz2 |
Fix indent problem in Install test fix
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/Install/Install.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/Install/Install.py b/test/Install/Install.py index 65725ba..8df9276 100644 --- a/test/Install/Install.py +++ b/test/Install/Install.py @@ -144,9 +144,8 @@ if not IS_ROOT: "The process cannot access the file because it is being used by another process", "Der Prozess kann nicht auf die Datei zugreifen, da sie von einem anderen Prozess verwendet wird", ] - - test.run(chdir='work', arguments=f1_out, stderr=None, status=2) - test.must_contain_any_line(test.stderr(), expect) + test.run(chdir='work', arguments=f1_out, stderr=None, status=2) + test.must_contain_any_line(test.stderr(), expect) test.pass_test() |