From 1304d9e8b37bc2df27974a7679dd17edc8bf9e38 2021-10-23 12:01:15 From: Samuel Gaist Date: 2021-10-23 12:01:15 Subject: [PATCH] [core][tests][extension] Remove nose --- diff --git a/IPython/core/tests/test_extension.py b/IPython/core/tests/test_extension.py index b18e684..51db4b6 100644 --- a/IPython/core/tests/test_extension.py +++ b/IPython/core/tests/test_extension.py @@ -1,7 +1,5 @@ import os.path -import nose.tools as nt - import IPython.testing.tools as tt from IPython.utils.syspathcontext import prepended_to_syspath from IPython.utils.tempdir import TemporaryDirectory @@ -93,4 +91,4 @@ def test_extension_builtins(): def test_non_extension(): em = get_ipython().extension_manager - nt.assert_equal(em.load_extension('sys'), "no load function") + assert em.load_extension("sys") == "no load function"