diff options
author | William Deegan <bill@baddogconsulting.com> | 2021-03-26 00:29:42 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2021-03-26 00:29:42 (GMT) |
commit | 6e2b38cab477ed365968f40aeba0ef59338988b5 (patch) | |
tree | 8019dc4740fe8ddc8d44203670f9579538244291 | |
parent | 39eed7be98e5516429d4dfb740090ba8c5619b76 (diff) | |
download | SCons-6e2b38cab477ed365968f40aeba0ef59338988b5.zip SCons-6e2b38cab477ed365968f40aeba0ef59338988b5.tar.gz SCons-6e2b38cab477ed365968f40aeba0ef59338988b5.tar.bz2 |
address sider issues
-rw-r--r-- | test/File/File-relpath.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/File/File-relpath.py b/test/File/File-relpath.py index 5914631..a80d115 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") |