aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/tests/params_test.cc
diff options
context:
space:
mode:
authorGravatar Justin Lebar <jlebar@google.com>2018-05-11 16:04:54 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-05-11 16:07:35 -0700
commit2f5f2cb4253b4eaf7953cf7ed28f76e0bdee6fcc (patch)
tree40e3333bbb20237045d50565b24c250de5d7141c /tensorflow/compiler/xla/tests/params_test.cc
parent5828842e5956825a65a5423b1ca503f72b084e62 (diff)
[XLA] s/tensorflow::Status/Status/.
These are type aliases of one another; we'd like to be consistent and use the shorter one. PiperOrigin-RevId: 196322955
Diffstat (limited to 'tensorflow/compiler/xla/tests/params_test.cc')
-rw-r--r--tensorflow/compiler/xla/tests/params_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/compiler/xla/tests/params_test.cc b/tensorflow/compiler/xla/tests/params_test.cc
index f04db776e6..838f1b4e2f 100644
--- a/tensorflow/compiler/xla/tests/params_test.cc
+++ b/tensorflow/compiler/xla/tests/params_test.cc
@@ -160,7 +160,7 @@ XLA_TEST_F(ParamsTest, MissingParameter) {
auto p = builder.Parameter(2, ShapeUtil::MakeShape(F32, {}), "param2");
auto computation_status = builder.Build();
- ASSERT_NE(computation_status.status(), tensorflow::Status::OK());
+ ASSERT_NE(computation_status.status(), Status::OK());
}
XLA_TEST_F(ParamsTest, UnusedParameter) {