Author: Brian Kearns <[email protected]>
Branch: 
Changeset: r68198:edd6b3a3df4d
Date: 2013-11-17 22:22 -0500
http://bitbucket.org/pypy/pypy/changeset/edd6b3a3df4d/

Log:    fix this test for the bsd builder

diff --git a/pypy/module/test_lib_pypy/test_grp_extra.py 
b/pypy/module/test_lib_pypy/test_grp_extra.py
--- a/pypy/module/test_lib_pypy/test_grp_extra.py
+++ b/pypy/module/test_lib_pypy/test_grp_extra.py
@@ -16,7 +16,7 @@
             except KeyError:
                 continue
             assert g.gr_gid == 0
-            assert g.gr_mem == ['root'] or g.gr_mem == []
+            assert 'root' in g.gr_mem or g.gr_mem == []
             assert g.gr_name == name
             assert isinstance(g.gr_passwd, str)    # usually just 'x', don't 
hope :-)
             break
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to