indentation

This commit is contained in:
vcloarec 2021-01-11 13:30:49 -04:00 committed by Martin Dobias
parent 64d5878588
commit 1ca091a1aa

View File

@ -713,7 +713,6 @@ class TestPyQgsMssqlProvider(unittest.TestCase, ProviderTestCase):
self.assertEqual(extent.toString(1),
QgsRectangle(1.0, 2.0, 4.0, 3.0).toString(1))
# Load with flag extent in geometry_columns table and check if the layer is not valid (no extent yet in geometry_columns)
layerUri.setParam('extentInGeometryColumns', '1')
loadedLayer = QgsVectorLayer(layerUri.uri(), "invalid", "mssql")
@ -741,5 +740,6 @@ class TestPyQgsMssqlProvider(unittest.TestCase, ProviderTestCase):
self.assertEqual(extent.toString(1),
QgsRectangle(0.0, 0.5, 5.5, 6.0).toString(1))
if __name__ == '__main__':
unittest.main()