diff options
author | luigi1111 <luigi1111w@gmail.com> | 2024-03-07 21:38:04 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2024-03-07 21:38:04 -0500 |
commit | b23116424d3cc4e5749a900dfda2f895f7d4d8e4 (patch) | |
tree | 9e756906f91917e14d36ef54485e27adcd9a9ecb /tests | |
parent | Merge pull request #9158 (diff) | |
parent | unit_tests: fix strtoul unit test (diff) | |
download | monero-b23116424d3cc4e5749a900dfda2f895f7d4d8e4.tar.xz |
Merge pull request #9217
7807f56 unit_tests: fix strtoul unit test (jeffro256)
Diffstat (limited to '')
-rw-r--r-- | tests/unit_tests/epee_utils.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/unit_tests/epee_utils.cpp b/tests/unit_tests/epee_utils.cpp index 110cebf6a..d30bd3bd6 100644 --- a/tests/unit_tests/epee_utils.cpp +++ b/tests/unit_tests/epee_utils.cpp @@ -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); |