Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
try to please indentation test
- Loading branch information
Showing
with
5 additions
and
3 deletions.
-
+5
−3
tests/src/python/test_qgsserver_two_layers.py
|
@@ -60,7 +60,7 @@ def result_compare(self, file_name, error_msg_header, header, body): |
|
|
f = open(os.path.dirname(__file__) + '/wfs_getfeature_' + requestid + '_response.txt', 'w+') |
|
|
f.write(response) |
|
|
f.close() |
|
|
""" |
|
|
""" |
|
|
response = re.sub(RE_STRIP_PATH, '', response) |
|
|
expected = re.sub(RE_STRIP_PATH, '', expected) |
|
|
self.assertEqual(response, expected, msg=u"%s\n Expected:\n%s\n\n Response:\n%s" |
|
@@ -109,9 +109,11 @@ def test_getfeature_post_multiple_layer(self): |
|
|
</gml:Envelope> |
|
|
</ogc:BBOX> |
|
|
</ogc:Filter> |
|
|
</wfs:Query> </wfs:GetFeature> |
|
|
</wfs:Query> |
|
|
</wfs:GetFeature> |
|
|
""" |
|
|
self.wfs_getfeature_post_compare('multiple', template) |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
unittest.main() |