unit_tests: fix strtoul unit test

dev-v0.11.2
jeffro256 2 months ago committed by selsta
parent 68e40ea2a7
commit 7807f569e4
Signed by untrusted user: selsta
GPG Key ID: 2EA0A99A8B07AE5E

@ -1883,7 +1883,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);

Loading…
Cancel
Save