Skip to content

Commit

Permalink
Merge branch 'main' into java-21-spring-boot-3
Browse files Browse the repository at this point in the history
  • Loading branch information
pricem14pc authored Oct 29, 2024
2 parents 6221b8b + 725e571 commit ed06ff6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -584,12 +584,12 @@ public void givenUnknownEligibilityWhenEqLaunchThenComplete() throws CTPExceptio
@Test
public void testCaseGroupTransitionFromCompleteToNotStarted() throws CTPException {
// Given
CaseGroupStatus notStarted = CaseGroupStatus.COMPLETE;
CaseGroupStatus caseGroupStatus = CaseGroupStatus.COMPLETE;

// When
CaseGroupStatus destinationState =
caseGroupStateMachine.transition(
notStarted, CategoryDTO.CategoryName.COMPLETED_TO_NOTSTARTED);
caseGroupStatus, CategoryDTO.CategoryName.COMPLETED_TO_NOTSTARTED);

// Then
assertEquals(CaseGroupStatus.NOTSTARTED, destinationState);
Expand Down

0 comments on commit ed06ff6

Please sign in to comment.