Skip to content

Commit 632969c

Browse files
committed
Endre navn på test til norsk
1 parent dc2b4f4 commit 632969c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dp-inntekt-api/src/test/kotlin/no/nav/dagpenger/inntekt/api/v3/KlassifisertInntektRouteV3Test.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package no.nav.dagpenger.inntekt.api.v3
22

33
import io.kotest.matchers.shouldBe
44
import io.ktor.http.HttpMethod
5-
import io.ktor.http.HttpStatusCode
5+
import io.ktor.http.HttpStatusCode.Companion.OK
66
import io.mockk.every
77
import io.mockk.mockk
88
import kotlinx.coroutines.runBlocking
@@ -49,7 +49,7 @@ class KlassifisertInntektRouteV3Test {
4949
}
5050

5151
@Test
52-
fun `Inntektparametre is created with expected values`() {
52+
fun `Inntektparametre opprettes med forventede verdier`() {
5353
val regelkontekst = RegelKontekst("id", "type")
5454
val beregningsDato = LocalDate.of(2018, 5, 27)
5555
val periodeFraOgMed = YearMonth.of(2017, 1)
@@ -77,7 +77,7 @@ class KlassifisertInntektRouteV3Test {
7777
),
7878
)
7979

80-
response.status shouldBe HttpStatusCode.OK
80+
response.status shouldBe OK
8181
val inntektparametre = inntektParametreCapture.first()
8282
inntektparametre.aktørId shouldBe aktørId
8383
inntektparametre.fødselsnummer shouldBe fødselsnummer

0 commit comments

Comments
 (0)