diff options
author | William Deegan <bill@baddogconsulting.com> | 2022-06-13 23:04:39 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2022-06-13 23:04:39 (GMT) |
commit | 9c5721cc8888ef228f84128c09aba169dcd64948 (patch) | |
tree | 86de5bdbbd6732a5d78eefdb565e7d01e73443f8 /testing/framework | |
parent | 8aff85b044586a5c8555fdb2ae0fbba048431424 (diff) | |
download | SCons-9c5721cc8888ef228f84128c09aba169dcd64948.zip SCons-9c5721cc8888ef228f84128c09aba169dcd64948.tar.gz SCons-9c5721cc8888ef228f84128c09aba169dcd64948.tar.bz2 |
Fix sider complaints
Diffstat (limited to 'testing/framework')
-rw-r--r-- | testing/framework/TestCmdTests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/framework/TestCmdTests.py b/testing/framework/TestCmdTests.py index b98d507..8e5ecda 100644 --- a/testing/framework/TestCmdTests.py +++ b/testing/framework/TestCmdTests.py @@ -2591,7 +2591,7 @@ script_recv: STDERR: input with open(t.recv_out_path, 'rb') as f: result = to_str(f.read()) expect = 'script_recv: ' + input - assert result == expect, "Result:[%s] should match\nExpected:[%s]"%(result, expect) + assert result == expect, "Result:[%s] should match\nExpected:[%s]" % (result, expect) p = test.start(stdin=1) input = 'send() input to the receive script\n' |