| Index: test/unittests/compiler/common-operator-unittest.cc
|
| diff --git a/test/unittests/compiler/common-operator-unittest.cc b/test/unittests/compiler/common-operator-unittest.cc
|
| index bed100a6d8c2340edc461e411f758ba7f18c3116..84651700bafcce665d1178aad31fa1512641459a 100644
|
| --- a/test/unittests/compiler/common-operator-unittest.cc
|
| +++ b/test/unittests/compiler/common-operator-unittest.cc
|
| @@ -194,9 +194,8 @@ TEST_F(CommonOperatorTest, Return) {
|
| EXPECT_EQ(Operator::kNoThrow, op->properties());
|
| EXPECT_EQ(input_count, op->ValueInputCount());
|
| EXPECT_EQ(1, op->EffectInputCount());
|
| - EXPECT_EQ(1, static_cast<uint32_t>(op->ControlInputCount()));
|
| - EXPECT_EQ(2 + input_count, static_cast<uint32_t>(
|
| - OperatorProperties::GetTotalInputCount(op)));
|
| + EXPECT_EQ(1, op->ControlInputCount());
|
| + EXPECT_EQ(2 + input_count, OperatorProperties::GetTotalInputCount(op));
|
| EXPECT_EQ(0, op->ValueOutputCount());
|
| EXPECT_EQ(0, op->EffectOutputCount());
|
| EXPECT_EQ(1, op->ControlOutputCount());
|
|
|