Skip to content

Commit

Permalink
fix typo: followup 24ef27d
Browse files Browse the repository at this point in the history
  • Loading branch information
slarosa committed Mar 15, 2018
1 parent 24ef27d commit 74689df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/src/python/test_qgsauxiliarystorage.py
Expand Up @@ -372,14 +372,14 @@ def testSetAuxiliaryLayer(self):
self.assertTrue(al.isValid())
vl.setAuxiliaryLayer(al)

self.assetFalse(vl.auxiliaryLayer(), None)
self.assertIsNotNone(vl.auxiliaryLayer())

# Clear auxiliary layer
al.clear()
# Remove auxiliary layer
vl.setAuxiliaryLayer()

self.assetTrue(vl.auxiliaryLayer(), None)
self.assertIsNone(vl.auxiliaryLayer())

def testCreateProperty(self):
s = QgsAuxiliaryStorage()
Expand Down

0 comments on commit 74689df

Please sign in to comment.