mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Indentation
This commit is contained in:
parent
80afbeda93
commit
3ec16131bc
@ -91,7 +91,7 @@ class AlgorithmsTest():
|
||||
|
||||
expectFailure = False
|
||||
if 'expectedFailure' in defs:
|
||||
exec('\n'.join(defs['expectedFailure'][:-1])) in globals(), locals()
|
||||
exec(('\n'.join(defs['expectedFailure'][:-1])), globals(), locals())
|
||||
expectFailure = eval(defs['expectedFailure'][-1])
|
||||
|
||||
def doCheck():
|
||||
|
@ -108,13 +108,13 @@ class TestPyQgsMemoryProvider(unittest.TestCase, ProviderTestCase):
|
||||
|
||||
def testGetFeaturesSubsetAttributes2(self):
|
||||
""" Override and skip this test for memory provider, as it's actually more efficient for the memory provider to return
|
||||
its features as direct copies (due to implicit sharing of QgsFeature)
|
||||
its features as direct copies (due to implicit sharing of QgsFeature)
|
||||
"""
|
||||
pass
|
||||
|
||||
def testGetFeaturesNoGeometry(self):
|
||||
""" Override and skip this test for memory provider, as it's actually more efficient for the memory provider to return
|
||||
its features as direct copies (due to implicit sharing of QgsFeature)
|
||||
its features as direct copies (due to implicit sharing of QgsFeature)
|
||||
"""
|
||||
pass
|
||||
|
||||
@ -331,13 +331,13 @@ class TestPyQgsMemoryProviderIndexed(unittest.TestCase, ProviderTestCase):
|
||||
|
||||
def testGetFeaturesSubsetAttributes2(self):
|
||||
""" Override and skip this test for memory provider, as it's actually more efficient for the memory provider to return
|
||||
its features as direct copies (due to implicit sharing of QgsFeature)
|
||||
its features as direct copies (due to implicit sharing of QgsFeature)
|
||||
"""
|
||||
pass
|
||||
|
||||
def testGetFeaturesNoGeometry(self):
|
||||
""" Override and skip this test for memory provider, as it's actually more efficient for the memory provider to return
|
||||
its features as direct copies (due to implicit sharing of QgsFeature)
|
||||
its features as direct copies (due to implicit sharing of QgsFeature)
|
||||
"""
|
||||
pass
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user