diff options
author | Mats Wichmann <mats@linux.com> | 2019-03-18 15:19:04 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2019-03-30 13:24:51 (GMT) |
commit | 573636d6e3583bed65bb864471161307c57d3b0c (patch) | |
tree | 11eaf09462962fd3d48225f971f15703a057a16b /testing | |
parent | a1a76026505d444ad04fd3494badcdacf8e58857 (diff) | |
download | SCons-573636d6e3583bed65bb864471161307c57d3b0c.zip SCons-573636d6e3583bed65bb864471161307c57d3b0c.tar.gz SCons-573636d6e3583bed65bb864471161307c57d3b0c.tar.bz2 |
[PY 3.8] fix some sider complaints in #3331
One was "real": had failed to indent a with: block
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'testing')
-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 bb9e3f9..29be9aa 100644 --- a/testing/framework/TestCmdTests.py +++ b/testing/framework/TestCmdTests.py @@ -3332,7 +3332,7 @@ class write_TestCase(TestCmdTestCase): with open(test.workpath('file8'), 'r') as f: assert f.read() == "Test file #8.\n" with open(test.workpath('file9'), 'rb') as f: - assert f.read() == "Test file #9.\r\n" + assert f.read() == "Test file #9.\r\n" class variables_TestCase(TestCmdTestCase): |