1 --- pexpect-4.9/tests/test_replwrap.py.orig
2 +++ pexpect-4.9/tests/test_replwrap.py
4 res = bash.run_command("echo '1 2\n3 4'")
5 self.assertEqual(res.strip().splitlines(), ['1 2', '3 4'])
7 + @pytest.mark.skip(reason="always fails: https://github.com/pexpect/pexpect/issues/767")
8 def test_existing_spawn(self):
9 child = pexpect.spawn("bash", timeout=5, encoding='utf-8')
10 repl = replwrap.REPLWrapper(child, re.compile('[$#]'),