You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/nnpy/files/py3.patch

20 lines
699 B

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)