Merge pull request #9214

399b884 unit_tests: fix strtoul unit test (jeffro256)
This commit is contained in:
luigi1111 2024-03-07 21:37:42 -05:00
commit 4b255808d0
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 0 additions and 1 deletions

View File

@ -1899,7 +1899,6 @@ TEST(parsing, strtoul)
p = "q";
endp = nullptr;
ul = std::strtoul(p, const_cast<char**>(&endp), 10);
EXPECT_EQ(0, errno);
EXPECT_EQ(0, ul);
EXPECT_EQ(p, endp);