Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 2.7] Remove WFS support of wms.geo.admin.ch #9964

Merged
merged 1 commit into from
Aug 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions geoportal/tests/functional/test_themes_mixed.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ def setup_method(self, _):

ogc_server_internal = create_default_ogcserver()
ogc_server_external = OGCServer(
name="__test_ogc_server_external", url="http://wms.geo.admin.ch/", image_type="image/jpeg"
name="__test_ogc_server_external",
url="https://wms.geo.admin.ch/",
image_type="image/jpeg",
wfs_support=False,
)
ogc_server_valid_wms_version = OGCServer(
name="__test_ogc_server_valid_wms_version",
Expand Down Expand Up @@ -213,7 +216,6 @@ def test_theme_mixed(self):
self._get_filtered_errors(themes),
{
"WARNING! an error 'The WMS version (1.0.0) you requested is not implemented. Please use 1.1.1 or 1.3",
"Unable to get WFS DescribeFeatureType from the URL 'http://wms.geo.admin.ch/?SERVICE=WFS&VERSION=1.0",
},
)
self.assertEqual(
Expand Down