aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/autograph/converters/asserts.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/autograph/converters/asserts.py')
-rw-r--r--tensorflow/python/autograph/converters/asserts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/python/autograph/converters/asserts.py b/tensorflow/python/autograph/converters/asserts.py
index 56a97534c4..4ba827c35f 100644
--- a/tensorflow/python/autograph/converters/asserts.py
+++ b/tensorflow/python/autograph/converters/asserts.py
@@ -33,7 +33,7 @@ class AssertTransformer(converter.Base):
# Note: The lone tf.Assert call will be wrapped with control_dependencies
# by side_effect_guards.
template = """
- tf.Assert(test, (msg,))
+ ag__.assert_stmt(test, lambda: msg)
"""
if node.msg is None: