X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/bf1f6a997ccdb115f7c77ab8ded34e80dca7abeb..f59a072aa6805bfce9ca4cc097c550af0f64879e:/test/python/cli/test_cli.py diff --git a/test/python/cli/test_cli.py b/test/python/cli/test_cli.py index d0e3307e..f1bb75a9 100644 --- a/test/python/cli/test_cli.py +++ b/test/python/cli/test_cli.py @@ -68,15 +68,6 @@ def test_cli_serve_php(cli_call, mock_func_factory): assert func.called == 1 -def test_cli_serve_sanic(cli_call, mock_func_factory): - mod = pytest.importorskip("sanic") - func = mock_func_factory(mod.Sanic, "run") - - cli_call('serve', '--engine', 'sanic') == 0 - - assert func.called == 1 - - def test_cli_serve_starlette_custom_server(cli_call, mock_func_factory): pytest.importorskip("starlette") mod = pytest.importorskip("uvicorn")