Variable name for the eager test (#13873)

This commit is contained in:
Alexandre Passos 2017-10-20 16:57:13 -07:00 committed by Vijay Vasudevan
parent c77090a0ae
commit f758b24a82

View File

@ -64,7 +64,8 @@ class AccumulateNV2EagerTest(test_util.TensorFlowTestCase):
np.random.seed(42)
num_inputs = 3
input_vars = [
resource_variable_ops.ResourceVariable(10.0 * np.random.random())
resource_variable_ops.ResourceVariable(10.0 * np.random.random(),
name="t1")
for i in range(0, num_inputs)
]