Merge pull request #45884 from tensorflow/mm-fix-broken-cherrypick-on-r2.0

Disable failing test
This commit is contained in:
Mihai Maruseac 2020-12-19 19:03:41 -08:00 committed by GitHub
commit ad6e7edf68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1333,17 +1333,6 @@ class DataFormatVectorPermuteTest(test_lib.TestCase):
with test_util.use_gpu():
self.evaluate(op)
@test_util.disable_xla("XLA catches the error and rethrows as different one")
def test2DNoWH(self):
x = [[0, 1], [2, 3]]
with self.assertRaisesRegex(
errors.InvalidArgumentError,
"Format specifier must contain H and W for 2D case"):
op = nn_ops.data_format_vec_permute(
x, src_format="1234", dst_format="4321")
with test_util.use_gpu():
self.evaluate(op)
@test_util.run_all_in_graph_and_eager_modes
class AvgPoolTest(test_lib.TestCase):