Skip to content

Commit

Permalink
ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktorGSolberg committed Oct 8, 2024
1 parent b4971dc commit 1fcf0d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ import no.nav.familie.kontrakter.felles.klage.BehandlingResultat.IKKE_MEDHOLD
import no.nav.familie.kontrakter.felles.klage.BehandlingResultat.IKKE_MEDHOLD_FORMKRAV_AVVIST
import no.nav.familie.kontrakter.felles.klage.BehandlingResultat.IKKE_SATT
import no.nav.familie.kontrakter.felles.klage.BehandlingResultat.MEDHOLD
import no.nav.familie.kontrakter.felles.klage.Klagebehandlingsårsak.*
import no.nav.familie.kontrakter.felles.klage.Klagebehandlingsårsak.HENVENDELSE_FRA_KABAL
import no.nav.familie.kontrakter.felles.klage.Klagebehandlingsårsak.ORDINÆR
import no.nav.familie.prosessering.domene.Task
import no.nav.familie.prosessering.internal.TaskService
import org.springframework.stereotype.Service
Expand Down Expand Up @@ -75,7 +76,7 @@ class FerdigstillBehandlingService(
behandlingId,
behandling.steg,
stegForResultat(behandlingsresultat),
behandlingsresultat
behandlingsresultat,
)
taskService.save(LagSaksbehandlingsblankettTask.opprettTask(behandlingId))
if (behandlingsresultat == IKKE_MEDHOLD) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package no.nav.familie.klage.søk

import java.util.UUID
import no.nav.familie.klage.behandling.BehandlingRepository
import no.nav.familie.klage.fagsak.domain.PersonIdent
import no.nav.familie.klage.infrastruktur.config.OppslagSpringRunnerTest
Expand All @@ -19,6 +18,7 @@ import org.springframework.boot.test.web.client.exchange
import org.springframework.http.HttpEntity
import org.springframework.http.HttpMethod
import org.springframework.http.HttpStatus
import java.util.UUID

class SøkControllerTest : OppslagSpringRunnerTest() {

Expand Down Expand Up @@ -60,6 +60,6 @@ class SøkControllerTest : OppslagSpringRunnerTest() {
restTemplate.exchange<Ressurs<PersonTreffDto>>(
localhost("/api/sok/person"),
HttpMethod.POST,
HttpEntity(personIdentDto, headers)
HttpEntity(personIdentDto, headers),
)
}
}

0 comments on commit 1fcf0d7

Please sign in to comment.