File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
dp-inntekt-api/src/test/kotlin/no/nav/dagpenger/inntekt/api/v3 Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package no.nav.dagpenger.inntekt.api.v3
2
2
3
3
import io.kotest.matchers.shouldBe
4
4
import io.ktor.http.HttpMethod
5
- import io.ktor.http.HttpStatusCode
5
+ import io.ktor.http.HttpStatusCode.Companion.OK
6
6
import io.mockk.every
7
7
import io.mockk.mockk
8
8
import kotlinx.coroutines.runBlocking
@@ -49,7 +49,7 @@ class KlassifisertInntektRouteV3Test {
49
49
}
50
50
51
51
@Test
52
- fun `Inntektparametre is created with expected values ` () {
52
+ fun `Inntektparametre opprettes med forventede verdier ` () {
53
53
val regelkontekst = RegelKontekst (" id" , " type" )
54
54
val beregningsDato = LocalDate .of(2018 , 5 , 27 )
55
55
val periodeFraOgMed = YearMonth .of(2017 , 1 )
@@ -77,7 +77,7 @@ class KlassifisertInntektRouteV3Test {
77
77
),
78
78
)
79
79
80
- response.status shouldBe HttpStatusCode . OK
80
+ response.status shouldBe OK
81
81
val inntektparametre = inntektParametreCapture.first()
82
82
inntektparametre.aktørId shouldBe aktørId
83
83
inntektparametre.fødselsnummer shouldBe fødselsnummer
You can’t perform that action at this time.
0 commit comments