Enable new converter in unit-tests

PiperOrigin-RevId: 292213974
Change-Id: I9321e892e28b1765981801a2f1a10c2c59509a79
This commit is contained in:
Karim Nosir 2020-01-29 14:03:53 -08:00 committed by TensorFlower Gardener
parent 3c162fce30
commit c10f7d7058

View File

@ -59,12 +59,8 @@ class LiteTest(test_util.TensorFlowTestCase):
"""Base class of all the tests in this module."""
def setUp(self):
# Some cases are broken when we enable the new converter by default.
# Explicitly disabling it for now.
# TODO(b/145763157): Investigate if these are real issues.
self._original_use_experimental_new_converter = (
lite._USE_EXPERIMENTAL_NEW_CONVERTER)
lite._USE_EXPERIMENTAL_NEW_CONVERTER = False
super(LiteTest, self).setUp()
def tearDown(self):