Browse Source

Fix CLI test for ImportError -> NoAppException

pull/2217/head
Ed Brannin 8 years ago
parent
commit
6e5250ab5d
  1. 2
      tests/test_cli.py

2
tests/test_cli.py

@ -83,7 +83,7 @@ def test_locate_app(test_apps):
pytest.raises(NoAppException, locate_app, "notanpp.py")
pytest.raises(NoAppException, locate_app, "cliapp/app")
pytest.raises(RuntimeError, locate_app, "cliapp.app:notanapp")
pytest.raises(ImportError, locate_app, "cliapp.importerrorapp")
pytest.raises(NoAppException, locate_app, "cliapp.importerrorapp")
def test_find_default_import_path(test_apps, monkeypatch, tmpdir):

Loading…
Cancel
Save