Index: media/audio/fake_audio_consumer_unittest.cc |
diff --git a/media/audio/fake_audio_consumer_unittest.cc b/media/audio/fake_audio_consumer_unittest.cc |
index ab97eaea8c76c78fa263bd41793d26b58be50a00..6f8e45ce7806b34b8d9736ab328b08f03f7dea33 100644 |
--- a/media/audio/fake_audio_consumer_unittest.cc |
+++ b/media/audio/fake_audio_consumer_unittest.cc |
@@ -113,7 +113,7 @@ TEST_F(FakeAudioConsumerTest, TimeBetweenCallbacks) { |
(end_time_ - start_time_) / (source_.callbacks() - 1); |
// Ensure callback time is no faster than the expected time between callbacks. |
- EXPECT_TRUE(actual_time_between_callbacks >= time_between_callbacks_); |
+ EXPECT_GE(actual_time_between_callbacks, time_between_callbacks_); |
// Softly check if the callback time is no slower than twice the expected time |
// between callbacks. Since this test runs on the bots we can't be too strict |