summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gentoobrowse-api/unittests/testUsers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gentoobrowse-api/unittests/testUsers.cpp b/gentoobrowse-api/unittests/testUsers.cpp
index a894e95..7eb0ba3 100644
--- a/gentoobrowse-api/unittests/testUsers.cpp
+++ b/gentoobrowse-api/unittests/testUsers.cpp
@@ -135,9 +135,9 @@ BOOST_AUTO_TEST_CASE( sendmailshot )
BOOST_REQUIRE_EQUAL("testuser", user->username);
BOOST_REQUIRE_EQUAL("Test User", user->userrealname);
BOOST_REQUIRE_EQUAL("test@user.com", user->useremail);
- BOOST_REQUIRE(user->signedup.length() > 19);
+ BOOST_REQUIRE_GE(user->signedup.length(), 19);
BOOST_REQUIRE(user->lastmailshot);
- BOOST_REQUIRE(user->lastmailshot->length() > 19);
+ BOOST_REQUIRE_GE(user->lastmailshot->length(), 19);
}
BOOST_AUTO_TEST_CASE( getMissing )