aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/framework/subscribe_test.py
diff options
context:
space:
mode:
authorGravatar Andrew Selle <aselle@google.com>2016-12-16 07:22:59 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-12-16 07:43:07 -0800
commitb183b6d0c8ff5ddf0cc48f21fc03341bf56c75f7 (patch)
tree0756257bf3bc732cb5e7739dcca62e2c8b0b8727 /tensorflow/python/framework/subscribe_test.py
parent709ee95325f0814100e5b6378d4405020cf9d8b8 (diff)
Change remaining tf.mul -> tf.multiply, tf.neg -> tf.negative, and tf.sub -> tf.subtract
tf.negative, tf.multiply, tf.subtract are the new names Change: 142257628
Diffstat (limited to 'tensorflow/python/framework/subscribe_test.py')
-rw-r--r--tensorflow/python/framework/subscribe_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/python/framework/subscribe_test.py b/tensorflow/python/framework/subscribe_test.py
index ed56f80d22..ca3b40b11d 100644
--- a/tensorflow/python/framework/subscribe_test.py
+++ b/tensorflow/python/framework/subscribe_test.py
@@ -34,7 +34,7 @@ class SubscribeTest(test_util.TensorFlowTestCase):
c = tf.add(a, b)
with tf.control_dependencies([c]):
d = tf.constant(42)
- n = tf.neg(c)
+ n = tf.negative(c)
shared = []