aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/kernel_tests/linalg/linear_operator_identity_test.py
diff options
context:
space:
mode:
authorGravatar Gunhan Gulsoy <gunan@google.com>2018-10-09 08:48:02 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-10-09 08:52:05 -0700
commit45fb1429f86b5ee6589fd50d8325843b49f78409 (patch)
tree764949e093532c97b3320d70c0eea58844699148 /tensorflow/python/kernel_tests/linalg/linear_operator_identity_test.py
parentcadcacc6224bcbb8a05bf3b70d625d9024a9c0f3 (diff)
Avoid extra calls to set_random_seed, as it is already called in
tensorflowtestcase. PiperOrigin-RevId: 216363450
Diffstat (limited to 'tensorflow/python/kernel_tests/linalg/linear_operator_identity_test.py')
-rw-r--r--tensorflow/python/kernel_tests/linalg/linear_operator_identity_test.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tensorflow/python/kernel_tests/linalg/linear_operator_identity_test.py b/tensorflow/python/kernel_tests/linalg/linear_operator_identity_test.py
index 0c3c6b390f..465a8194dd 100644
--- a/tensorflow/python/kernel_tests/linalg/linear_operator_identity_test.py
+++ b/tensorflow/python/kernel_tests/linalg/linear_operator_identity_test.py
@@ -20,7 +20,6 @@ from __future__ import print_function
import numpy as np
from tensorflow.python.framework import dtypes
-from tensorflow.python.framework import random_seed
from tensorflow.python.ops import array_ops
from tensorflow.python.ops import linalg_ops
from tensorflow.python.ops import random_ops
@@ -29,7 +28,6 @@ from tensorflow.python.ops.linalg import linear_operator_test_util
from tensorflow.python.platform import test
-random_seed.set_random_seed(23)
rng = np.random.RandomState(2016)