dev-python/nnpy: bump to 1.4.1

Package-Manager: Portage-2.3.6, Repoman-2.3.2
This commit is contained in:
Alexis Ballier
2017-06-03 19:57:23 +02:00
parent 85c898451d
commit 721b89d834
3 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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)