diff --git a/tests/comestible_test.cpp b/tests/comestible_test.cpp index 969dcb4aaa6bc..af3df5cebb99d 100644 --- a/tests/comestible_test.cpp +++ b/tests/comestible_test.cpp @@ -348,6 +348,7 @@ TEST_CASE( "food_satiety_bar", "[character][food][satiety]" ) CHECK( satiety_bar( 200 ) == "|\\..." ); // NOLINTNEXTLINE(cata-text-style): verbatim ellipses necessary for validation CHECK( satiety_bar( 300 ) == "|\\..." ); + // NOLINTNEXTLINE(cata-text-style): verbatim ellipses necessary for validation CHECK( satiety_bar( 400 ) == "||..." ); CHECK( satiety_bar( 500 ) == "||\\.." ); CHECK( satiety_bar( 600 ) == "||\\.." );