mirror of
https://github.com/python/cpython.git
synced 2025-08-19 00:00:48 +00:00
bpo-45195: Fix test_readline.test_nonascii() (GH-28329) (GH-28333)
Fix test_readline.test_nonascii(): sometimes, the newline character
is not written at the end, so don't expect it in the output.
(cherry picked from commit 797c8eb9ef
)
Co-authored-by: Victor Stinner <vstinner@python.org>
This commit is contained in:
parent
0c64569ac7
commit
ececa53b7f
2 changed files with 6 additions and 1 deletions
|
@ -255,7 +255,9 @@ print("history", ascii(readline.get_history_item(1)))
|
|||
self.assertIn(b"matches ['t\\xebnt', 't\\xebxt']\r\n", output)
|
||||
expected = br"'[\xefnserted]|t\xebxt[after]'"
|
||||
self.assertIn(b"result " + expected + b"\r\n", output)
|
||||
self.assertIn(b"history " + expected + b"\r\n", output)
|
||||
# bpo-45195: Sometimes, the newline character is not written at the
|
||||
# end, so don't expect it in the output.
|
||||
self.assertIn(b"history " + expected, output)
|
||||
|
||||
# We have 2 reasons to skip this test:
|
||||
# - readline: history size was added in 6.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue