Author: Matti Picus <matti.pi...@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):
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to