mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-11 14:17:27 -08:00
20 lines
699 B
Diff
20 lines
699 B
Diff
commit 98ee46a4034ca94d6123b854e79f1dc3f35fff4a
|
|
Author: Alexis Ballier <aballier@gentoo.org>
|
|
Date: Sat Jun 3 19:55:10 2017 +0200
|
|
|
|
Fix tests under python3.
|
|
|
|
diff --git a/nnpy/tests.py b/nnpy/tests.py
|
|
index ba2a3fe..7f9f6e0 100644
|
|
--- a/nnpy/tests.py
|
|
+++ b/nnpy/tests.py
|
|
@@ -17,7 +17,7 @@ class Tests(unittest.TestCase):
|
|
poller = nnpy.PollSet((sub, nnpy.POLLIN))
|
|
self.assertEqual(len(poller.poll()), 1)
|
|
self.assertEqual(poller.poll()[0], 1)
|
|
- self.assertEqual(sub.recv(), 'FLUB')
|
|
+ self.assertEqual(sub.recv().decode(), 'FLUB')
|
|
self.assertEqual(pub.get_statistic(nnpy.STAT_MESSAGES_SENT), 1)
|
|
pub.close()
|
|
sub.shutdown(sub_conn)
|