diff options
author | jeffro256 <jeffro256@tutanota.com> | 2024-03-07 09:05:09 -0600 |
---|---|---|
committer | jeffro256 <jeffro256@tutanota.com> | 2024-03-07 09:05:09 -0600 |
commit | 399b884a9ce25660d4eb934e2aca302564d70d99 (patch) | |
tree | abe2b04737356236a814b349d4949a746fc8cdbd | |
parent | Merge pull request #9004 (diff) | |
download | monero-399b884a9ce25660d4eb934e2aca302564d70d99.tar.xz |
unit_tests: fix strtoul unit test
-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 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); |