X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/738e99ce71b165e9fddb3381ba683fb5fd9b7298..c4a726c96b4458b19a45f17b810fafe808c35605:/test/python/cli/test_cli.py diff --git a/test/python/cli/test_cli.py b/test/python/cli/test_cli.py index 2831f84f..d42df50a 100644 --- a/test/python/cli/test_cli.py +++ b/test/python/cli/test_cli.py @@ -37,15 +37,6 @@ def test_cli_version(cli_call, capsys): assert captured.out.startswith('Nominatim version') -def test_cli_serve_php(cli_call, mock_func_factory): - func = mock_func_factory(nominatim_db.cli, 'run_php_server') - - cli_call('serve', '--engine', 'php') == 0 - - assert func.called == 1 - - - class TestCliWithDb: @pytest.fixture(autouse=True)