Skip to content

Commit

Permalink
Reduserer saksbehandlingstid fra 8 uker til 7 uker. (#411)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramrock93 authored Feb 6, 2024
1 parent 1539cc2 commit 957c143
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 @@ -99,7 +99,7 @@ void skalRegneUtSaksbehandlingsfrist() {
ZonedDateTime tidligsteMottattTidspunkt = LocalDate.of(2024, 1, 5).atStartOfDay(ZoneId.systemDefault());
var behandling = lagBehandling(false, tidligsteMottattTidspunkt.plusDays(10), tidligsteMottattTidspunkt, tidligsteMottattTidspunkt.plusMonths(20));
ZonedDateTime saksbehandlingsfrist = behandling.utledSaksbehandlingsfrist(null).get();
assertThat(saksbehandlingsfrist).isEqualTo(tidligsteMottattTidspunkt.plusWeeks(8));
assertThat(saksbehandlingsfrist).isEqualTo(tidligsteMottattTidspunkt.plusWeeks(7));
}

@Test
Expand Down
2 changes: 1 addition & 1 deletion konstant/src/main/java/no/nav/k9/konstant/Konstant.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import java.time.temporal.ChronoUnit;

public class Konstant {
private static final Long SAKSBEHANDLINGSTID_UKER = 8L;
private static final Long SAKSBEHANDLINGSTID_UKER = 7L;
private static final Long ANTALL_UKEDAGER = 7L;
/*
* ChronoUnit.WEEKS har ikke en fast varighet fordi lengden av en uke kan variere for eksempel, pga.sommertid).
Expand Down

0 comments on commit 957c143

Please sign in to comment.