Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r89308:aa9ae054b625
Date: 2017-01-02 18:00 +0100
http://bitbucket.org/pypy/pypy/changeset/aa9ae054b625/

Log:    fix test

diff --git a/pypy/module/_socket/test/test_sock_app.py 
b/pypy/module/_socket/test/test_sock_app.py
--- a/pypy/module/_socket/test/test_sock_app.py
+++ b/pypy/module/_socket/test/test_sock_app.py
@@ -495,7 +495,8 @@
     def test_socket_connect_typeerrors(self):
         tests = [
             "",
-            ("80"),
+            "80",
+            ("80",),
             ("80", "80"),
             (80, 80),
         ]
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to