aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/cc/ops
diff options
context:
space:
mode:
authorGravatar Geoffrey Irving <geoffreyi@google.com>2017-05-17 09:23:54 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-05-17 09:27:36 -0700
commit73882f257ffb1bc9e1a828571c085d080b1d9266 (patch)
tree8adcefa226f95d6c6ce067ee45528d76794e55fb /tensorflow/cc/ops
parent9a47c258c9c2286ae2c14a0da6458055f3b691d3 (diff)
Automated g4 rollback of changelist 156251356
PiperOrigin-RevId: 156315860
Diffstat (limited to 'tensorflow/cc/ops')
-rw-r--r--tensorflow/cc/ops/const_op_test.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/tensorflow/cc/ops/const_op_test.cc b/tensorflow/cc/ops/const_op_test.cc
index 5a4770f879..3184edeb33 100644
--- a/tensorflow/cc/ops/const_op_test.cc
+++ b/tensorflow/cc/ops/const_op_test.cc
@@ -28,9 +28,9 @@ void ExpectNodeEqual(const Node* n, gtl::ArraySlice<T> values,
TensorShape shape) {
EXPECT_TRUE(n->IsConstant());
Tensor tensor;
- TF_EXPECT_OK(GetNodeAttr(n->def(), "value", &tensor));
+ TF_EXPECT_OK(GetNodeAttr(n->attrs(), "value", &tensor));
DataType dtype;
- TF_EXPECT_OK(GetNodeAttr(n->def(), "dtype", &dtype));
+ TF_EXPECT_OK(GetNodeAttr(n->attrs(), "dtype", &dtype));
EXPECT_EQ(tensor.dtype(), dtype);
test::ExpectTensorEqual<T>(tensor, test::AsTensor(values, shape));
}
@@ -39,9 +39,9 @@ void ExpectTypeAndShape(const Node* n, DataType expected_dtype,
TensorShape expected_shape) {
EXPECT_TRUE(n->IsConstant());
Tensor tensor;
- TF_EXPECT_OK(GetNodeAttr(n->def(), "value", &tensor));
+ TF_EXPECT_OK(GetNodeAttr(n->attrs(), "value", &tensor));
DataType dtype;
- TF_EXPECT_OK(GetNodeAttr(n->def(), "dtype", &dtype));
+ TF_EXPECT_OK(GetNodeAttr(n->attrs(), "dtype", &dtype));
EXPECT_EQ(dtype, expected_dtype);
EXPECT_EQ(expected_shape, TensorShape(tensor.shape()));
}