aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/unit-test.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests/unit-test.py')
-rwxr-xr-xpython/tests/unit-test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/tests/unit-test.py b/python/tests/unit-test.py
index 1737ace..762959e 100755
--- a/python/tests/unit-test.py
+++ b/python/tests/unit-test.py
@@ -53,8 +53,9 @@ history = pubnub.history({
'channel' : crazy,
'limit' : 1
})
+
test(
- history[0].encode('utf-8') == crazy,
+ history[0] == crazy,
'History Message: ' + history[0]
)
test( len(history) == 1, 'History Message Count' )