Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Jun 12, 2016
1 parent 7b3e667 commit 4f803e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/python/test_qgsexpression.py
Expand Up @@ -134,7 +134,7 @@ def testReferencedColumnsNoSet(self):
def testReferencedColumnsSet(self):
success = QgsExpression.registerFunction(self.referenced_columns_set)
exp = QgsExpression('referenced_columns_set()')
self.assertEqual(exp.referencedColumns(), ['a', 'b'])
self.assertEqual(set(exp.referencedColumns()), set(['a', 'b']))

def testCantOverrideBuiltinsWithUnregister(self):
success = QgsExpression.unregisterFunction("sqrt")
Expand Down

0 comments on commit 4f803e8

Please sign in to comment.