Skip to content

Commit

Permalink
Change expected Quarter to be right because a new Quarter has begun
Browse files Browse the repository at this point in the history
  • Loading branch information
nevio18324 committed Oct 14, 2024
1 parent 9c61e53 commit f910b40
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void quarterFunctionShouldReturnCorrectCurrentQuarterData() {
+ currentQuarterEndDate() + ")";

// assert
String expectedCurrent = "(2, GJ 24/25-Q1, 2024-07-01, 2024-09-30)";
String expectedCurrent = "(2, GJ 24/25-Q2, 2024-10-01, 2024-12-31)";
assertEquals(expectedCurrent, currentQuarter);
}

Expand All @@ -38,7 +38,7 @@ void quarterFunctionShouldReturnCorrectNextQuarterData() {
+ nextQuarterEndDate() + ")";

// assert
String expectedNext = "(3, GJ 24/25-Q2, 2024-10-01, 2024-12-31)";
String expectedNext = "(3, GJ 24/25-Q3, 2025-01-01, 2025-03-31)";
assertEquals(expectedNext, nextQuarter);
}
}

0 comments on commit f910b40

Please sign in to comment.