aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjeffro256 <jeffro256@tutanota.com>2024-03-07 09:05:09 -0600
committerjeffro256 <jeffro256@tutanota.com>2024-03-07 09:05:09 -0600
commit399b884a9ce25660d4eb934e2aca302564d70d99 (patch)
treeabe2b04737356236a814b349d4949a746fc8cdbd
parentMerge pull request #9004 (diff)
downloadmonero-399b884a9ce25660d4eb934e2aca302564d70d99.tar.xz
unit_tests: fix strtoul unit test
-rw-r--r--tests/unit_tests/epee_utils.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/unit_tests/epee_utils.cpp b/tests/unit_tests/epee_utils.cpp
index dd3aafaa6..3573f21ba 100644
--- a/tests/unit_tests/epee_utils.cpp
+++ b/tests/unit_tests/epee_utils.cpp
@@ -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);