Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fbbb0c commit 571e85eCopy full SHA for 571e85e
1 file changed
IPython/utils/tests/test_module_paths.py
@@ -105,7 +105,8 @@ def test_find_mod_4():
105
nt.assert_equal(mp.find_mod("pack"), modpath)
106
107
def test_find_mod_5():
108
- nt.assert_is_none(mp.find_mod("packpyc"))
+ modpath = join(TMP_TEST_DIR, "packpyc.pyc")
109
+ nt.assert_equal(mp.find_mod("packpyc"), modpath)
110
111
def test_find_module_1():
112
modpath = join(TMP_TEST_DIR, "xmod")
0 commit comments