Fix a typo in coordinator_test.py. threads[1:1] is the empty array, so we were't

actually waiting for threads[1].

PiperOrigin-RevId: 272283450
This commit is contained in:
Jeremy Lau 2019-10-01 13:37:56 -07:00 committed by TensorFlower Gardener
parent beeea26e66
commit 52257a1bda

View File

@ -133,7 +133,7 @@ class CoordinatorTest(test.TestCase):
t.start()
WaitForThreadsToRegister(coord, 2)
# threads[1] is not registered we must pass it in.
coord.join(threads[1:1])
coord.join([threads[1]])
for t in threads:
self.assertFalse(t.is_alive())