Skip to content

Commit

Permalink
Fix SCAN tests for python2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ioga committed Oct 2, 2014
1 parent 4b55f91 commit f9390da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def tearDown(self):
@inlineCallbacks
def test_scan(self):
self._skipCheck()
yield self.db.mset({k: 'value' for k in self.KEYS})
yield self.db.mset(dict((k, 'value') for k in self.KEYS))

cursor, result = yield self.db.scan(pattern=self.PATTERN)

Expand Down

0 comments on commit f9390da

Please sign in to comment.