Skip to content

Commit 7e75a9a

Browse files
marcelweikumahans
andauthored
Apply suggestions from code review
Co-authored-by: Alexander Hans <ahans@users.noreply.github.com>
1 parent 97737ef commit 7e75a9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/practice/baffling-birthdays/baffling_birthdays_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ TEST_CASE("one_birthdate", "[716dcc2b-8fe4-4fc9-8c48-cbe70d8e6b67]") {
1515
TEST_CASE("two_birthdates_with_same_year_month_and_day",
1616
"[f7b3eb26-bcfc-4a1e-a2de-af07afc33f45]") {
1717
std::vector<std::string> birthdates{"2000-01-01", "2000-01-01"};
18-
REQUIRE(baffling_birthdays::shared_birthday(birthdates) == true);
18+
REQUIRE(baffling_birthdays::shared_birthday(birthdates));
1919
}
2020

2121
TEST_CASE("two_birthdates_with_same_year_and_month_but_different_day",
2222
"[7193409a-6e16-4bcb-b4cc-9ffe55f79b25]") {
2323
std::vector<std::string> birthdates{"2012-05-09", "2012-05-17"};
24-
REQUIRE(baffling_birthdays::shared_birthday(birthdates) == false);
24+
REQUIRE_FALSE(baffling_birthdays::shared_birthday(birthdates));
2525
}
2626

2727
TEST_CASE("two_birthdates_with_same_month_and_day_but_different_year",

0 commit comments

Comments
 (0)