[pypy-commit] pypy default: Fix test

arigo noreply at buildbot.pypy.org
Wed May 20 10:40:16 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r77420:2c648d4310f1
Date: 2015-05-20 10:40 +0200
http://bitbucket.org/pypy/pypy/changeset/2c648d4310f1/

Log:	Fix test

diff --git a/pypy/module/_cffi_backend/test/test_file.py b/pypy/module/_cffi_backend/test/test_file.py
--- a/pypy/module/_cffi_backend/test/test_file.py
+++ b/pypy/module/_cffi_backend/test/test_file.py
@@ -20,7 +20,8 @@
     from pypy.module._cffi_backend import VERSION
     line = "Version: %s\n" % VERSION
     eggfile = py.path.local(__file__).join('..', '..', '..', '..', '..',
-                                           'lib_pypy', 'cffi.egg-info')
+                                           'lib_pypy', 'cffi.egg-info',
+                                           'PKG-INFO')
     assert line in eggfile.readlines()
 
 def test_app_version():


More information about the pypy-commit mailing list