[pypy-commit] pypy py3.6: fix merge

mattip pypy.commits at gmail.com
Mon Feb 3 15:11:31 EST 2020


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.6
Changeset: r98652:2311bec2bb7f
Date: 2020-02-03 21:53 +0200
http://bitbucket.org/pypy/pypy/changeset/2311bec2bb7f/

Log:	fix merge

diff --git a/pypy/module/posix/test/test_posix2.py b/pypy/module/posix/test/test_posix2.py
--- a/pypy/module/posix/test/test_posix2.py
+++ b/pypy/module/posix/test/test_posix2.py
@@ -546,7 +546,7 @@
                                      "echo caf\xe9 \u1234 > onefile"])
             os.waitpid(pid, 0)
             with open("onefile", "rb") as fid:
-                asert fid.read() == output
+                assert fid.read() == output
             os.unlink("onefile")
 
         def test_execve(self):


More information about the pypy-commit mailing list