Skip to content

Commit

Permalink
Merge pull request #9217
Browse files Browse the repository at this point in the history
7807f56 unit_tests: fix strtoul unit test (jeffro256)
  • Loading branch information
luigi1111 committed Mar 8, 2024
2 parents 68e40ea + 7807f56 commit b231164
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/unit_tests/epee_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit b231164

Please sign in to comment.