mirror of
https://github.com/monero-project/monero.git
synced 2025-01-22 18:54:39 +00:00
Merge pull request #9217
7807f56
unit_tests: fix strtoul unit test (jeffro256)
This commit is contained in:
commit
b23116424d
1 changed files with 0 additions and 1 deletions
|
@ -1883,7 +1883,6 @@ TEST(parsing, strtoul)
|
||||||
p = "q";
|
p = "q";
|
||||||
endp = nullptr;
|
endp = nullptr;
|
||||||
ul = std::strtoul(p, const_cast<char**>(&endp), 10);
|
ul = std::strtoul(p, const_cast<char**>(&endp), 10);
|
||||||
EXPECT_EQ(0, errno);
|
|
||||||
EXPECT_EQ(0, ul);
|
EXPECT_EQ(0, ul);
|
||||||
EXPECT_EQ(p, endp);
|
EXPECT_EQ(p, endp);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue