Skip to content

Commit

Permalink
fix(lasagna): typo in test file
Browse files Browse the repository at this point in the history
  • Loading branch information
vaeng committed Jan 3, 2024
1 parent c100a5a commit 74222a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/concept/lasagna/lasagna_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ TEST_CASE("Correct for 11 layers", "[task_3]") {
TEST_CASE("Fresh in the oven, 12 layers!", "[task_4]") {
int timeSpendInOven = 0;
int timePerLayer = 2;
int layers = 11;
int layers = 12;
int actual = elapsedTime(layers, timeSpendInOven);
int expected{timePerLayer * layers + timeSpendInOven};

Expand Down

0 comments on commit 74222a1

Please sign in to comment.