Remove more warnings in tests

This commit is contained in:
Krystian Stasiowski
2020-02-28 14:08:21 -05:00
parent 315a9fd087
commit 971b663df1
3 changed files with 13 additions and 7 deletions

View File

@ -7036,8 +7036,8 @@ testEmpty()
{
static_string<0> a;
BOOST_TEST(a.size() == 0);
BOOST_TEST(a.data());
BOOST_TEST(!a.capacity());
BOOST_TEST(a.data() != nullptr);
BOOST_TEST(a.capacity() == 0);
}
void