Fix test expectation order

This commit is contained in:
Jason Cobb 2021-02-28 21:39:37 -05:00
parent b263cd5de4
commit ab343b62cb
No known key found for this signature in database
GPG Key ID: 2A3F6A6DCA1E8DED

View File

@ -166,8 +166,8 @@ TEST(IteratorTest, TruncatingIteratorDefaultConstruct) {
"");
fmt::detail::truncating_iterator<char*> it;
EXPECT_EQ(it.base(), nullptr);
EXPECT_EQ(it.count(), 0);
EXPECT_EQ(nullptr, it.base());
EXPECT_EQ(0, it.count());
}
#ifdef __cpp_lib_ranges