diff options
Diffstat (limited to 'Lib/test/test_eof.py')
-rw-r--r-- | Lib/test/test_eof.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_eof.py b/Lib/test/test_eof.py index bb1300c7c24..f8065788cec 100644 --- a/Lib/test/test_eof.py +++ b/Lib/test/test_eof.py @@ -26,7 +26,7 @@ class EOFTestCase(unittest.TestCase): else: raise support.TestFailed - @unittest.skipIf(sys.flags.use_peg, "TODO for PEG -- fails with new parser") + @support.skip_if_new_parser("TODO for PEG -- fails with new parser") def test_line_continuation_EOF(self): """A continuation at the end of input must be an error; bpo2180.""" expect = 'unexpected EOF while parsing (<string>, line 1)' |