aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/tests/rmsprop_test.py
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-06-28 17:11:05 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-28 17:13:56 -0700
commit6dc9977e1dffc9558835cf4d0a62b61b6c85cc19 (patch)
treec1e8bcbb2342df806d1387982370ce0b4a03c1ab /tensorflow/compiler/tests/rmsprop_test.py
parentc81830af5d488de600a4f62392c63059e310c017 (diff)
Import package xla_test instead of class XLATestCase.
PiperOrigin-RevId: 202572322
Diffstat (limited to 'tensorflow/compiler/tests/rmsprop_test.py')
-rw-r--r--tensorflow/compiler/tests/rmsprop_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/compiler/tests/rmsprop_test.py b/tensorflow/compiler/tests/rmsprop_test.py
index ecdce4f052..9489fded32 100644
--- a/tensorflow/compiler/tests/rmsprop_test.py
+++ b/tensorflow/compiler/tests/rmsprop_test.py
@@ -20,7 +20,7 @@ from __future__ import print_function
import numpy as np
-from tensorflow.compiler.tests.xla_test import XLATestCase
+from tensorflow.compiler.tests import xla_test
from tensorflow.python.framework import constant_op
from tensorflow.python.ops import resource_variable_ops
from tensorflow.python.ops import variables
@@ -28,7 +28,7 @@ from tensorflow.python.platform import test
from tensorflow.python.training import rmsprop
-class RmspropTest(XLATestCase):
+class RmspropTest(xla_test.XLATestCase):
def testBasic(self):
for dtype in self.float_types: