Skip to content

Commit fcc96de

Browse files
committed
[processing] fix indentation
1 parent 75bd622 commit fcc96de

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

python/plugins/processing/tests/GdalAlgorithmsTest.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -75,31 +75,31 @@ def test_getConnectionString(self):
7575
# NOTE: defaults are debatable, see
7676
# https://github.com/qgis/QGIS/pull/3607#issuecomment-253971020
7777
self.assertEqual(obj.getConnectionString(),
78-
"host=localhost port=5432 active_schema=public")
78+
"host=localhost port=5432 active_schema=public")
7979

8080
obj.setParameterValue('HOST', 'remote')
8181
self.assertEqual(obj.getConnectionString(),
82-
"host=remote port=5432 active_schema=public")
82+
"host=remote port=5432 active_schema=public")
8383

8484
obj.setParameterValue('HOST', '')
8585
self.assertEqual(obj.getConnectionString(),
86-
"port=5432 active_schema=public")
86+
"port=5432 active_schema=public")
8787

8888
obj.setParameterValue('PORT', '5555')
8989
self.assertEqual(obj.getConnectionString(),
90-
"port=5555 active_schema=public")
90+
"port=5555 active_schema=public")
9191

9292
obj.setParameterValue('PORT', '')
9393
self.assertEqual(obj.getConnectionString(),
94-
"active_schema=public")
94+
"active_schema=public")
9595

9696
obj.setParameterValue('USER', 'usr')
9797
self.assertEqual(obj.getConnectionString(),
98-
"active_schema=public user=usr")
98+
"active_schema=public user=usr")
9999

100100
obj.setParameterValue('PASSWORD', 'pwd')
101101
self.assertEqual(obj.getConnectionString(),
102-
"password=pwd active_schema=public user=usr")
102+
"password=pwd active_schema=public user=usr")
103103

104104

105105
if __name__ == '__main__':

0 commit comments

Comments
 (0)