aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/ops/math_ops_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/ops/math_ops_test.cc')
-rw-r--r--tensorflow/core/ops/math_ops_test.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/tensorflow/core/ops/math_ops_test.cc b/tensorflow/core/ops/math_ops_test.cc
index 6a1cc8e7eb..84264f13dc 100644
--- a/tensorflow/core/ops/math_ops_test.cc
+++ b/tensorflow/core/ops/math_ops_test.cc
@@ -450,11 +450,15 @@ TEST(MathOpsTest, ArgOps_ShapeFn) {
// Dimension value out of bounds
dimension = test::AsScalar(10);
op.input_tensors[1] = &dimension;
- INFER_ERROR("must be in the range [0, 3)", op, "[2,3,4];[]");
+ INFER_ERROR("must be in the range [-3, 3)", op, "[2,3,4];[]");
dimension = test::AsScalar(-10);
op.input_tensors[1] = &dimension;
- INFER_ERROR("must be in the range [0, 3)", op, "[2,3,4];[]");
+ INFER_ERROR("must be in the range [-3, 3)", op, "[2,3,4];[]");
+
+ dimension = test::AsScalar(-1);
+ op.input_tensors[1] = &dimension;
+ INFER_OK(op, "[2,3,4];[]", "[d0_0,d0_1]");
}
TEST(MathOpsTest, Betainc_ShapeFn) {