diff options
author | njsmith <njs@pobox.com> | 2013-04-08 12:04:07 -0700 |
---|---|---|
committer | njsmith <njs@pobox.com> | 2013-04-08 12:04:07 -0700 |
commit | f85bdf48aadf7b5a5f575370b589805fed190a6c (patch) | |
tree | c84a165c4b3d10421744785ffe2803bc069b09ea /numpy/distutils/tests/test_misc_util.py | |
parent | 01aa27a436476d87c4d986a80225d23179eebb44 (diff) | |
parent | 011f8a20044a3982b2441cb53876e9689a3f6d0c (diff) | |
download | numpy-f85bdf48aadf7b5a5f575370b589805fed190a6c.tar.gz |
Merge pull request #3208 from charris/2to3-apply-repr-fixer
2to3: Apply `repr` fixer.
Diffstat (limited to 'numpy/distutils/tests/test_misc_util.py')
-rw-r--r-- | numpy/distutils/tests/test_misc_util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/tests/test_misc_util.py b/numpy/distutils/tests/test_misc_util.py index fab00aaa3..69968f63f 100644 --- a/numpy/distutils/tests/test_misc_util.py +++ b/numpy/distutils/tests/test_misc_util.py @@ -50,9 +50,9 @@ class TestGpaths(TestCase): def test_gpaths(self): local_path = minrelpath(join(dirname(__file__),'..')) ls = gpaths('command/*.py', local_path) - assert_(join(local_path,'command','build_src.py') in ls,`ls`) + assert_(join(local_path,'command','build_src.py') in ls,repr(ls)) f = gpaths('system_info.py', local_path) - assert_(join(local_path,'system_info.py')==f[0],`f`) + assert_(join(local_path,'system_info.py')==f[0],repr(f)) if __name__ == "__main__": |