mirror of
https://github.com/python/cpython.git
synced 2025-10-10 17:02:46 +00:00
Fix the new TestMain.test_decode() of test_base64 for Windows
This commit is contained in:
parent
479736b31c
commit
0dee1b859b
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ class TestMain(unittest.TestCase):
|
||||||
with open(support.TESTFN, 'wb') as fp:
|
with open(support.TESTFN, 'wb') as fp:
|
||||||
fp.write(b'Yf9iCg==')
|
fp.write(b'Yf9iCg==')
|
||||||
output = self.get_output('-d', support.TESTFN)
|
output = self.get_output('-d', support.TESTFN)
|
||||||
self.assertEquals(output, b'a\xffb\n')
|
self.assertEquals(output.rstrip(), b'a\xffb')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue