aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/keras/engine/sequential_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/keras/engine/sequential_test.py')
-rw-r--r--tensorflow/python/keras/engine/sequential_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/python/keras/engine/sequential_test.py b/tensorflow/python/keras/engine/sequential_test.py
index 28af8d61bc..9d615c9b0c 100644
--- a/tensorflow/python/keras/engine/sequential_test.py
+++ b/tensorflow/python/keras/engine/sequential_test.py
@@ -132,7 +132,7 @@ class TestSequential(test.TestCase, parameterized.TestCase):
@parameterized.parameters((True,), (False,))
def test_training_and_eval_methods_on_symbolic_tensors(self, deferred):
- with self.test_session():
+ with self.cached_session():
def get_model():
if deferred:
@@ -222,7 +222,7 @@ class TestSequential(test.TestCase, parameterized.TestCase):
val_a = np.random.random((10, 4))
val_out = np.random.random((10, 4))
- with self.test_session():
+ with self.cached_session():
model = keras.models.Sequential()
model.add(keras.layers.BatchNormalization(input_shape=(4,)))
assert model.updates