Fix another gcc 4.9.2 signed-compare error.

BUG=

Review URL: https://codereview.chromium.org/1397003002

Cr-Commit-Position: refs/heads/master@{#31199}
This commit is contained in:
paul.lind 2015-10-09 13:03:56 -07:00 committed by Commit bot
parent 30b57dcd42
commit 9d66c8813a

View File

@ -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());