summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2021-03-25 17:29:42 -0700
committerWilliam Deegan <bill@baddogconsulting.com>2021-03-25 17:29:42 -0700
commit6e2b38cab477ed365968f40aeba0ef59338988b5 (patch)
tree8019dc4740fe8ddc8d44203670f9579538244291
parent39eed7be98e5516429d4dfb740090ba8c5619b76 (diff)
downloadscons-git-6e2b38cab477ed365968f40aeba0ef59338988b5.tar.gz
address sider issues
-rw-r--r--test/File/File-relpath.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/File/File-relpath.py b/test/File/File-relpath.py
index 591463103..a80d1159d 100644
--- a/test/File/File-relpath.py
+++ b/test/File/File-relpath.py
@@ -40,7 +40,7 @@ test.subdir("src", ["src", "dir"])
test.dir_fixture("fixture/relpath")
expected = [
- # expanding variable, expected string
+ # expanding variable, expected string
("${TARGETS.relpath}", "../foo/dir build/file1"),
(
"${TARGETS.abspath}",
@@ -53,10 +53,10 @@ expected = [
("${SOURCE.abspath}", os.path.abspath("base/src/file")),
]
-expected_stdout="\n".join(["%s=%s"%(s,o) for s,o in expected])
-expected_stdout+="\nscons: `.' is up to date."
+expected_stdout = "\n".join(["%s=%s" % (s, o) for s, o in expected])
+expected_stdout += "\nscons: `.' is up to date."
if IS_WINDOWS:
- expected_stdout = expected_stdout.replace('/', os.sep)
+ expected_stdout = expected_stdout.replace("/", os.sep)
-test.run('-Q', chdir='base', status=0, stdout=expected_stdout+"\n")
+test.run("-Q", chdir="base", status=0, stdout=expected_stdout + "\n")