Indentation

This commit is contained in:
Nyall Dawson 2016-03-10 10:44:45 +11:00
parent 80afbeda93
commit 3ec16131bc
2 changed files with 5 additions and 5 deletions

View File

@ -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():

View File

@ -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