From 5ca2639d07eba324dcf9b7b9bd8e1420097011ec Mon Sep 17 00:00:00 2001
From: Martin Wicke <wicke@google.com>
Date: Sat, 2 Mar 2019 21:40:56 -0800
Subject: [PATCH] Disable complex matrix exponential test.

PiperOrigin-RevId: 236505386
---
 tensorflow/python/kernel_tests/matrix_exponential_op_test.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tensorflow/python/kernel_tests/matrix_exponential_op_test.py b/tensorflow/python/kernel_tests/matrix_exponential_op_test.py
index 372b6dc17f4..705f25b4fcd 100644
--- a/tensorflow/python/kernel_tests/matrix_exponential_op_test.py
+++ b/tensorflow/python/kernel_tests/matrix_exponential_op_test.py
@@ -89,6 +89,7 @@ class ExponentialOpTest(test.TestCase):
     # A multidimensional batch of 2x2 matrices
     self._verifyExponentialReal(self._makeBatch(matrix1, matrix2))
 
+  @test_util.run_deprecated_v1
   def testNonsymmetricComplex(self):
     matrix1 = np.array([[1., 2.], [3., 4.]])
     matrix2 = np.array([[1., 3.], [3., 5.]])