aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/eager/python/tfe_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/eager/python/tfe_test.py')
-rw-r--r--tensorflow/contrib/eager/python/tfe_test.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tensorflow/contrib/eager/python/tfe_test.py b/tensorflow/contrib/eager/python/tfe_test.py
index db50b33af2..4454abfb96 100644
--- a/tensorflow/contrib/eager/python/tfe_test.py
+++ b/tensorflow/contrib/eager/python/tfe_test.py
@@ -27,7 +27,6 @@ from tensorflow.python.framework import test_util
from tensorflow.python.ops import array_ops
from tensorflow.python.ops import math_ops
from tensorflow.python.ops import numerics
-from tensorflow.python.ops import variables
from tensorflow.python.platform import test
from tensorflow.python.summary import summary
from tensorflow.python.summary.writer import writer
@@ -45,12 +44,6 @@ class TFETest(test_util.TensorFlowTestCase):
r'indices = 7 is not in \[0, 3\)'):
array_ops.gather([0, 1, 2], 7)
- def testVariableError(self):
- with self.assertRaisesRegexp(
- RuntimeError,
- r'Variable not supported when eager execution is enabled'):
- variables.Variable(initial_value=1.0)
-
def testGradients(self):
def square(x):