aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/kernel_tests/shape_ops_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/kernel_tests/shape_ops_test.py')
-rw-r--r--tensorflow/python/kernel_tests/shape_ops_test.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tensorflow/python/kernel_tests/shape_ops_test.py b/tensorflow/python/kernel_tests/shape_ops_test.py
index 465a02bfe6..67d6fdd96a 100644
--- a/tensorflow/python/kernel_tests/shape_ops_test.py
+++ b/tensorflow/python/kernel_tests/shape_ops_test.py
@@ -22,7 +22,6 @@ import numpy as np
import tensorflow as tf
-from tensorflow.python.framework import ops
from tensorflow.python.ops import array_ops
@@ -36,7 +35,7 @@ def _sparsify(x, thresh=0.5, index_dtype=np.int64):
x_values = x[non_zero]
x_shape = x.shape
- return ops.SparseTensor(
+ return tf.SparseTensor(
indices=x_indices, values=x_values, shape=x_shape), len(x_values)
class ShapeOpsTest(tf.test.TestCase):