~ubuntu-branches/ubuntu/utopic/kazoo/utopic-proposed

« back to all changes in this revision

Viewing changes to kazoo/tests/test_barrier.py

  • Committer: Package Import Robot
  • Author(s): Neil Williams
  • Date: 2013-08-26 06:26:20 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130826062620-dv79eayvq78028jb
Tags: 1.2.1-1
* New upstream release.
* Fix sphinx documentation build on clean systems (added
  python-gevent to Build-Depends and patched config).
* Bumped standards version to 3.9.4. No changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
        ev.wait()
79
79
        eq_(b1.participating, False)
80
80
        eq_(b2.participating, False)
 
81
        t1.join()
 
82
        t2.join()
81
83
 
82
84
    def test_three_barrier(self):
83
85
        av = threading.Event()
133
135
        eq_(b1.participating, False)
134
136
        eq_(b2.participating, False)
135
137
        eq_(b3.participating, False)
 
138
        t1.join()
 
139
        t2.join()
136
140
 
137
141
    def test_barrier_existing_parent_node(self):
138
142
        b = self.client.DoubleBarrier('/some/path', 1)