Skip to content

Commit d5d4643

Browse files
committed
[#3245] Minor UT change
modified: src/hooks/dhcp/perfmon/tests/monitored_duration_unittests.cc
1 parent 03f21bd commit d5d4643

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hooks/dhcp/perfmon/tests/monitored_duration_unittests.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ TEST(DurationDataInterval, basics) {
4242
// Verify that start time can be specified.
4343
interval.reset(new DurationDataInterval(start_time + milliseconds(5000)));
4444
ASSERT_TRUE(interval);
45-
EXPECT_GE(interval->getStartTime() - start_time, milliseconds(5000));
45+
EXPECT_EQ(interval->getStartTime() - start_time, milliseconds(5000));
4646

4747
// Add 100ms duration and check contents.
4848
Duration d100(milliseconds(100));

0 commit comments

Comments
 (0)