Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Aug 10, 2018
1 parent facd023 commit 84cf682
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions tests/src/python/test_qgsserver_accesscontrol_wcs.py
Expand Up @@ -35,7 +35,7 @@


class TestQgsServerAccessControlWCS(TestQgsServerAccessControl):

def test_wcs_getcapabilities(self):
query_string = "&".join(["%s=%s" % i for i in list({
"MAP": urllib.parse.quote(self.projectPath),
Expand Down Expand Up @@ -153,6 +153,5 @@ def test_wcs_getcoverage(self):
"The layer for the COVERAGE 'dem' is not found")



if __name__ == "__main__":
unittest.main()
4 changes: 2 additions & 2 deletions tests/src/python/test_qgsserver_accesscontrol_wfs.py
Expand Up @@ -35,7 +35,7 @@


class TestQgsServerAccessControlWFS(TestQgsServerAccessControl):

def test_wfs_getcapabilities(self):
query_string = "&".join(["%s=%s" % i for i in list({
"MAP": urllib.parse.quote(self.projectPath),
Expand Down Expand Up @@ -165,9 +165,9 @@ def test_wfs_getfeature_country(self):
"Unexpeced result in GetFeatureInfo\n%s" % response) # spellok



# # Subset String # #


def test_wfs_getfeature_subsetstring(self):
data = """<?xml version="1.0" encoding="UTF-8"?>
<wfs:GetFeature {xml_ns}>
Expand Down
2 changes: 1 addition & 1 deletion tests/src/python/test_qgsserver_accesscontrol_wms.py
Expand Up @@ -593,6 +593,7 @@ def test_wms_getfeatureinfo_country_grp(self):

# # Subset String # #


def test_wms_getmap_subsetstring(self):
query_string = "&".join(["%s=%s" % i for i in list({
"MAP": urllib.parse.quote(self.projectPath),
Expand Down Expand Up @@ -1042,6 +1043,5 @@ def test_wms_getfeatureinfo_projectsubsetstring2(self):
"Unexpected result from GetFeatureInfo Hello/2\n%s" % response)



if __name__ == "__main__":
unittest.main()

0 comments on commit 84cf682

Please sign in to comment.