Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelMolina3691 committed Feb 11, 2025
1 parent 1758513 commit d6b37b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public boolean isCoSCEnabled() {
return featureToggleApi.isFeatureEnabled("isCoSCEnabled");
}

public boolean isCaseProgressionEnabledAndLocationWhiteListed(String location) {
public boolean isCaseProgressionEnabledAndLocationWhiteListed() {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ void shouldReturnCorrectValue_whenIsCoSCEnabled(Boolean toggleStat) {
@Test
void shouldReturnCorrectValueBasedOnLocationAndFeatureToggle() {

boolean result = featureToggleService.isCaseProgressionEnabledAndLocationWhiteListed(null);
boolean result = featureToggleService.isCaseProgressionEnabledAndLocationWhiteListed();

assertTrue(result);
}
Expand Down

0 comments on commit d6b37b7

Please sign in to comment.