Skip to content

Commit

Permalink
Fix requireOPP test decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
thobbs committed Jul 31, 2013
1 parent f26d6a9 commit aead733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/util.py
Expand Up @@ -10,6 +10,6 @@ def wrapper(self, *args, **kwargs):
partitioner = self.sys_man.describe_partitioner()
if partitioner in ('RandomPartitioner', 'Murmur3Partitioner'):
raise SkipTest('Must use order preserving partitioner for this test')
return f(*args, **kwargs)
return f(self, *args, **kwargs)

return wrapper

0 comments on commit aead733

Please sign in to comment.