diff --git a/tests/test_wfs_schema.py b/tests/test_wfs_schema.py index 2d48bbf06..5a3943338 100644 --- a/tests/test_wfs_schema.py +++ b/tests/test_wfs_schema.py @@ -87,7 +87,7 @@ class TestOnline(object): @pytest.mark.online @pytest.mark.skipif(not service_ok(WFS_SERVICE_URL), reason="WFS service is unreachable") - @pytest.mark.parametrize("wfs_version", ["1.0.0", "1.1.0", "2.0.0"]) + @pytest.mark.parametrize("wfs_version", ["1.1.0", "2.0.0"]) def test_get_schema(self, wfs_version): """Test the get_schema method for a standard schema.""" wfs = WebFeatureService(WFS_SERVICE_URL, version=wfs_version) @@ -96,7 +96,7 @@ def test_get_schema(self, wfs_version): @pytest.mark.online @pytest.mark.skipif(not service_ok(WFS_SERVICE_URL), reason="WFS service is unreachable") - @pytest.mark.parametrize("wfs_version", ["1.0.0", "1.1.0", "2.0.0"]) + @pytest.mark.parametrize("wfs_version", ["1.1.0", "2.0.0"]) def test_schema_result(self, wfs_version): """Test whether the output from get_schema is a wellformed dictionary.""" wfs = WebFeatureService(WFS_SERVICE_URL, version=wfs_version)