aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/python/lite_test.py
diff options
context:
space:
mode:
authorGravatar Nupur Garg <nupurgarg@google.com>2018-06-07 10:38:50 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-07 10:41:48 -0700
commitcd25a9544915654022e2cfff4923c31822166112 (patch)
tree3d85e5e728df88547bf997c47dd1e1224fa6e02e /tensorflow/contrib/lite/python/lite_test.py
parent796fff865013f964e85c134dddf6f1f49574bd72 (diff)
Updated SavedModels in Python TOCO API.
PiperOrigin-RevId: 199658431
Diffstat (limited to 'tensorflow/contrib/lite/python/lite_test.py')
-rw-r--r--tensorflow/contrib/lite/python/lite_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/lite/python/lite_test.py b/tensorflow/contrib/lite/python/lite_test.py
index bbb00021f9..b04caaf263 100644
--- a/tensorflow/contrib/lite/python/lite_test.py
+++ b/tensorflow/contrib/lite/python/lite_test.py
@@ -401,7 +401,7 @@ class FromFrozenGraphFile(test_util.TensorFlowTestCase):
with self.assertRaises(ValueError) as error:
lite.TocoConverter.from_frozen_graph(graph_def_file, ['Placeholder'],
['add'])
- self.assertEqual('Please freeze the graph using freeze_graph.py',
+ self.assertEqual('Please freeze the graph using freeze_graph.py.',
str(error.exception))
def testPbtxt(self):