Skip to content

Commit

Permalink
Add debug output to csv test
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Dec 15, 2015
1 parent 9fdab87 commit 0eb36d5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/src/python/test_qgsdelimitedtextprovider.py
Expand Up @@ -280,9 +280,13 @@ def runTest(file, requests, **params):
failures.append(msg)
wanted_data = wanted['data']
for id in sorted(wanted_data.keys()):
print('getting wanted data')
wrec = wanted_data[id]
print('getting received data')
trec = data.get(id, {})
print('getting description')
description = wrec['description']
print('getting difference')
difference = recordDifference(wrec, trec)
if not difference:
print ' {0}: Passed'.format(description)
Expand Down

0 comments on commit 0eb36d5

Please sign in to comment.