| Index: net/quic/quic_clock_test.cc
|
| diff --git a/net/quic/quic_clock_test.cc b/net/quic/quic_clock_test.cc
|
| index 6ee4540889f7a1115f1962f5a216efb19c1d05f4..b6800611ebe49e35d4c7b1a72b8302c49a549ab5 100644
|
| --- a/net/quic/quic_clock_test.cc
|
| +++ b/net/quic/quic_clock_test.cc
|
| @@ -29,8 +29,8 @@ TEST(QuicClockTest, WallNow) {
|
|
|
| // If end > start, then we can check now is between start and end.
|
| if (end > start) {
|
| - EXPECT_LE(static_cast<uint64>(start.ToTimeT()), now.ToUNIXSeconds());
|
| - EXPECT_LE(now.ToUNIXSeconds(), static_cast<uint64>(end.ToTimeT()));
|
| + EXPECT_LE(static_cast<uint64_t>(start.ToTimeT()), now.ToUNIXSeconds());
|
| + EXPECT_LE(now.ToUNIXSeconds(), static_cast<uint64_t>(end.ToTimeT()));
|
| }
|
| }
|
|
|
|
|