Skip to content
This repository has been archived by the owner on Mar 28, 2019. It is now read-only.

Commit

Permalink
py3 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
tarekziade committed Oct 23, 2015
1 parent d488a12 commit d6228f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cliquet/tests/test_listeners.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def test_redis_is_notified(self):

# okay, we should have the first event in Redis
last = self._redis.lpop('cliquet.events')
last = json.loads(last)
last = json.loads(last.decode('utf8'))
self.assertEqual(last['action'], ACTIONS.CREATE)

def test_notification_is_broken(self):
Expand Down

0 comments on commit d6228f6

Please sign in to comment.