Skip to content

Commit 7b185ec

Browse files
committed
tests/ceph_timer: Fix link error that keeps showing up
We keep hitting link errors from GTest trying to print the values and iostreams for `<chrono>` being flaky. Just make it a straight up `EXPECT_TRUE` so it stops breaking differently on different platforms. Signed-off-by: Adam Emerson <[email protected]>
1 parent 1ab2507 commit 7b185ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/common/test_ceph_timer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ void run_orderly()
6666
});
6767
}
6868

69-
EXPECT_LT(first.get(), second.get());
69+
EXPECT_TRUE(first.get() < second.get());
7070
}
7171

7272
struct Destructo {

0 commit comments

Comments
 (0)