aboutsummaryrefslogtreecommitdiff
path: root/tests/unit_tests/wipeable_string.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-09-29 22:11:50 +0200
committerRiccardo Spagni <ric@spagni.net>2018-09-29 22:11:50 +0200
commit3d8f54daad84c07aed820d3492f78c4ea86a5d91 (patch)
treed8aaeeccebb4ea4ee14a20bdb1cc7d198e78034d /tests/unit_tests/wipeable_string.cpp
parentMerge pull request #4417 (diff)
parentunit_tests: fix build with GCC 5.4.0 on ubuntu (diff)
downloadmonero-3d8f54daad84c07aed820d3492f78c4ea86a5d91.tar.xz
Merge pull request #4424
92d1da28 unit_tests: fix build with GCC 5.4.0 on ubuntu (moneromooo-monero)
Diffstat (limited to 'tests/unit_tests/wipeable_string.cpp')
-rw-r--r--tests/unit_tests/wipeable_string.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/unit_tests/wipeable_string.cpp b/tests/unit_tests/wipeable_string.cpp
index 65718fd45..44e050c5c 100644
--- a/tests/unit_tests/wipeable_string.cpp
+++ b/tests/unit_tests/wipeable_string.cpp
@@ -194,13 +194,13 @@ TEST(wipeable_string, parse_hexstr)
ASSERT_EQ(boost::none, epee::wipeable_string("0").parse_hexstr());
ASSERT_EQ(boost::none, epee::wipeable_string("000").parse_hexstr());
- ASSERT_TRUE((s = epee::wipeable_string("").parse_hexstr()));
+ ASSERT_TRUE((s = epee::wipeable_string("").parse_hexstr()) != boost::none);
ASSERT_EQ(*s, "");
- ASSERT_TRUE((s = epee::wipeable_string("00").parse_hexstr()));
+ ASSERT_TRUE((s = epee::wipeable_string("00").parse_hexstr()) != boost::none);
ASSERT_EQ(*s, epee::wipeable_string("", 1));
- ASSERT_TRUE((s = epee::wipeable_string("41").parse_hexstr()));
+ ASSERT_TRUE((s = epee::wipeable_string("41").parse_hexstr()) != boost::none);
ASSERT_EQ(*s, epee::wipeable_string("A"));
- ASSERT_TRUE((s = epee::wipeable_string("414243").parse_hexstr()));
+ ASSERT_TRUE((s = epee::wipeable_string("414243").parse_hexstr()) != boost::none);
ASSERT_EQ(*s, epee::wipeable_string("ABC"));
}