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 8e2e6a3 commit 68c4648
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions tests/src/python/test_qgsserver_accesscontrol_wms.py
Expand Up @@ -117,9 +117,6 @@ def test_wms_getprojectsettings(self):
self.assertTrue(
str(response).find("name=\"Country\"") != -1,
"No Country layer in GetProjectSettings\n%s" % response)
self.assertTrue(
str(response).find("name=\"Country_grp\"") != -1,
"No Country_grp layer in GetProjectSettings\n%s" % response)
self.assertTrue(
str(response).find("name=\"Country\"")
< str(response).find("name=\"Hello\""),
Expand All @@ -131,10 +128,7 @@ def test_wms_getprojectsettings(self):
"No Hello layer in GetContext\n%s" % response)
self.assertFalse(
str(response).find("name=\"Country\"") != -1,
"No Country layer in GetProjectSettings\n%s" % response)
self.assertFalse(
str(response).find("name=\"Country_grp\"") != -1,
"No Country_grp layer in GetProjectSettings\n%s" % response)
"Country layer in GetProjectSettings\n%s" % response)

def test_wms_describelayer_hello(self):
query_string = "&".join(["%s=%s" % i for i in list({
Expand Down

0 comments on commit 68c4648

Please sign in to comment.