# HG changeset patch # User Julien Cristau # Date 1425391096 -3600 # Node ID ae8df3692fba46f90d6f964ca3ff3a3719f570e2 # Parent 96085e37906612a30b53f8af8622e561a0e2885d [server/test] fix test_zmq We were only asserting in a thread, thus ignoring the results. diff -r 96085e379066 -r ae8df3692fba server/test/unittest_repository.py --- a/server/test/unittest_repository.py Thu Jun 12 15:22:01 2014 +0200 +++ b/server/test/unittest_repository.py Tue Mar 03 14:58:16 2015 +0100 @@ -384,6 +384,8 @@ t2.join(1) t.join(1) + self.assertTrue(done[0]) + if t.isAlive(): self.fail('something went wrong, thread still alive')