Skip to content

Commit 51b7ef9

Browse files
authored
[libc][NFC] Fix a typo in test/src/stdfix/RoundTest.h. (#84411)
1 parent fb02f9a commit 51b7ef9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/test/src/stdfix/RoundTest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ template <typename T> class RoundTest : public LIBC_NAMESPACE::testing::Test {
2828

2929
void testSpecialNumbers(RoundFunc func) {
3030
EXPECT_EQ(zero, func(zero, FXRep::FRACTION_LEN - 5));
31-
EXPECT_EQ(max, func(min, 0));
31+
EXPECT_EQ(min, func(min, 0));
3232
EXPECT_EQ(max, func(max, FXRep::FRACTION_LEN));
3333

3434
EXPECT_EQ(one, func(half, 0));

0 commit comments

Comments
 (0)