Skip to content

Commit ac3f789

Browse files
committed
do not depend on deprecated nose
1 parent 2e6d843 commit ac3f789

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_application.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import logging
99
from unittest import TestCase
1010

11-
import nose.tools as nt
11+
import pytest
1212
from traitlets.tests.utils import check_help_all_output, check_help_output
1313

1414
from jupyter_contrib_core.application import main as main_app
@@ -59,5 +59,5 @@ def test_00_help_output(self):
5959
check_help_output(app_module, [])
6060
check_help_all_output(app_module, [])
6161
# sys.exit should be called if no argv specified
62-
with nt.assert_raises(SystemExit):
62+
with pytest.raises(SystemExit):
6363
main_app([])

0 commit comments

Comments
 (0)