diff options
author | jeffro256 <jeffro256@tutanota.com> | 2024-03-07 16:10:01 +0100 |
---|---|---|
committer | selsta <selsta@sent.at> | 2024-03-07 16:10:01 +0100 |
commit | 7807f569e4773f66cfe465c5b28d793ffa341317 (patch) | |
tree | 9e756906f91917e14d36ef54485e27adcd9a9ecb | |
parent | Merge pull request #9158 (diff) | |
download | monero-7807f569e4773f66cfe465c5b28d793ffa341317.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 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); |