Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ TEST_CASE("Years before desired balance for large start balance", "[task_4]") {
TEST_CASE("Years before large difference between start and target balance", "[task_4]") {
double balance{2345.67};
double target_balance{12345.6789};
int want{85};
int want{104};
REQUIRE(years_until_desired_balance(balance, target_balance) == want);
}
TEST_CASE("Balance is already above target", "[task_4]") {
Expand Down
Loading