Skip to content

Commit d962a28

Browse files
committed
LAST COMMIT BEFORE RELEASE 0.10.0 - FIX FLAKE ERR
1 parent 510ff45 commit d962a28

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

GeoHealthCheck/plugins/probe/ogcfeat.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,23 +245,25 @@ def perform_request(self):
245245
self, result, False, msg, 'Test GetItem')
246246
continue
247247

248-
# At least these attributes should be present, 'id' and 'links'
249-
# not strictly required.
248+
# At least these attributes should be present.
249+
# 'id' and 'links' are not strictly required.
250250
for attr in ['properties', 'geometry', 'type']:
251251

252252
val = item.get(attr, None)
253253
if val is None:
254254
msg = '%s:%s missing attr: %s' \
255255
% (coll_id, str(fid), attr)
256256
result = push_result(
257-
self, result, False, msg, 'Test Feature attrs present')
257+
self, result, False, msg,
258+
'Test Feature attrs present')
258259
continue
259260

260261
if attr == 'type' and val != 'Feature':
261262
msg = '%s:%s type not Feature: %s' \
262263
% (coll_id, str(fid), val)
263264
result = push_result(
264-
self, result, False, msg, 'Test attr type=Feature')
265+
self, result, False, msg,
266+
'Test attr type=Feature')
265267
continue
266268

267269
except Exception as err:

0 commit comments

Comments
 (0)