[pypy-commit] pypy default: fix test

arigo pypy.commits at gmail.com
Mon Jan 2 12:01:16 EST 2017


Author: Armin Rigo <arigo at 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),
         ]


More information about the pypy-commit mailing list