We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03f21bd commit d5d4643Copy full SHA for d5d4643
src/hooks/dhcp/perfmon/tests/monitored_duration_unittests.cc
@@ -42,7 +42,7 @@ TEST(DurationDataInterval, basics) {
42
// Verify that start time can be specified.
43
interval.reset(new DurationDataInterval(start_time + milliseconds(5000)));
44
ASSERT_TRUE(interval);
45
- EXPECT_GE(interval->getStartTime() - start_time, milliseconds(5000));
+ EXPECT_EQ(interval->getStartTime() - start_time, milliseconds(5000));
46
47
// Add 100ms duration and check contents.
48
Duration d100(milliseconds(100));
0 commit comments