X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/510eb53f536078dd8bca6dcfa5f2cd76bf80df47..9934421442bf1a815096ef06ffa3f8c9ea11c0ac:/test/python/cursor.py?ds=inline diff --git a/test/python/cursor.py b/test/python/cursor.py index 9b8ff83b..46069020 100644 --- a/test/python/cursor.py +++ b/test/python/cursor.py @@ -3,7 +3,7 @@ Specialised psycopg2 cursor with shortcut functions useful for testing. """ import psycopg2.extras -class TestingCursor(psycopg2.extras.DictCursor): +class CursorForTesting(psycopg2.extras.DictCursor): """ Extension to the DictCursor class that provides execution short-cuts that simplify writing assertions. """