aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/summary/event_accumulator_test.py
diff options
context:
space:
mode:
authorGravatar Justine Tunney <jart@google.com>2016-08-15 09:40:13 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-08-15 10:47:57 -0700
commit851d74fdb3f89a770bc6491c33161755ce82f596 (patch)
tree637f2bfe9aab77bb9e5e8e52c71d8b375c517152 /tensorflow/python/summary/event_accumulator_test.py
parent4d9c11b204dc38eb3508dba32b4148e739fa08c6 (diff)
Fix threading bug in reservoir sampling
Change: 130296718
Diffstat (limited to 'tensorflow/python/summary/event_accumulator_test.py')
-rw-r--r--tensorflow/python/summary/event_accumulator_test.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tensorflow/python/summary/event_accumulator_test.py b/tensorflow/python/summary/event_accumulator_test.py
index 480de4c7e7..3349e73f04 100644
--- a/tensorflow/python/summary/event_accumulator_test.py
+++ b/tensorflow/python/summary/event_accumulator_test.py
@@ -732,6 +732,8 @@ class RealisticEventAccumulatorTest(EventAccumulatorTest):
# Verify we can now see all of the data
acc.Reload()
+ id_events = acc.Scalars('id')
+ sq_events = acc.Scalars('sq')
self.assertEqual(40, len(id_events))
self.assertEqual(40, len(sq_events))
for i in xrange(40):