@@ -27,40 +27,40 @@ TEST_CASE("two_birthdates_with_same_year_and_month_but_different_day",
2727TEST_CASE (" two_birthdates_with_same_month_and_day_but_different_year" ,
2828 " [d04db648-121b-4b72-93e8-d7d2dced4495]" ) {
2929 std::vector<std::string> birthdates{" 1999-10-23" , " 1988-10-23" };
30- REQUIRE (baffling_birthdays::shared_birthday (birthdates) == true );
30+ REQUIRE (baffling_birthdays::shared_birthday (birthdates));
3131}
3232
3333TEST_CASE (" two_birthdates_with_same_year_but_different_month_and_day" ,
3434 " [3c8bd0f0-14c6-4d4c-975a-4c636bfdc233]" ) {
3535 std::vector<std::string> birthdates{" 2007-12-19" , " 2007-04-27" };
36- REQUIRE (baffling_birthdays::shared_birthday (birthdates) == false );
36+ REQUIRE_FALSE (baffling_birthdays::shared_birthday (birthdates));
3737}
3838
3939TEST_CASE (" two_birthdates_with_different_year_month_and_day" ,
4040 " [df5daba6-0879-4480-883c-e855c99cdaa3]" ) {
4141 std::vector<std::string> birthdates{" 1997-08-04" , " 1963-11-23" };
42- REQUIRE (baffling_birthdays::shared_birthday (birthdates) == false );
42+ REQUIRE_FALSE (baffling_birthdays::shared_birthday (birthdates));
4343}
4444
4545TEST_CASE (" multiple_birthdates_without_shared_birthday" ,
4646 " [0c17b220-cbb9-4bd7-872f-373044c7b406]" ) {
4747 std::vector<std::string> birthdates{" 1966-07-29" , " 1977-02-12" ,
4848 " 2001-12-25" , " 1980-11-10" };
49- REQUIRE (baffling_birthdays::shared_birthday (birthdates) == false );
49+ REQUIRE_FALSE (baffling_birthdays::shared_birthday (birthdates));
5050}
5151
5252TEST_CASE (" multiple_birthdates_with_one_shared_birthday" ,
5353 " [966d6b0b-5c0a-4b8c-bc2d-64939ada49f8]" ) {
5454 std::vector<std::string> birthdates{" 1966-07-29" , " 1977-02-12" ,
5555 " 2001-07-29" , " 1980-11-10" };
56- REQUIRE (baffling_birthdays::shared_birthday (birthdates) == true );
56+ REQUIRE (baffling_birthdays::shared_birthday (birthdates));
5757}
5858
5959TEST_CASE (" multiple_birthdates_with_more_than_one_shared_birthday" ,
6060 " [b7937d28-403b-4500-acce-4d9fe3a9620d]" ) {
6161 std::vector<std::string> birthdates{
6262 " 1966-07-29" , " 1977-02-12" , " 2001-12-25" , " 1980-07-29" , " 2019-02-12" };
63- REQUIRE (baffling_birthdays::shared_birthday (birthdates) == true );
63+ REQUIRE (baffling_birthdays::shared_birthday (birthdates));
6464}
6565
6666TEST_CASE (" generate_requested_number_of_birthdates" ,
0 commit comments