Skip to content

Commit

Permalink
Fikset kompileringsfeil etter rebase mot main
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsmsa committed Sep 10, 2024
1 parent e191d72 commit 9684548
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class ProcessPdlResultsV2Test : FreeSpec({
val chunk = listOf(KeyValue(hendelseState.periodeId, hendelseState))

val outputV1 = resultV1.processResults(chunk, prometheusMeterRegistry, logger)
val outputV2 = listOf(resultV2).processPdlResultsV2(chunk, logger)
val outputV2 = listOf(resultV2).processPdlResultsV2(OppholdsReglerV1, chunk, logger)

outputV1.shouldHaveSize(1)
outputV2.shouldHaveSize(1)
Expand Down Expand Up @@ -120,7 +120,7 @@ class ProcessPdlResultsV2Test : FreeSpec({

val logger = mockk<Logger>(relaxed = true)

val output = listOf(result).processPdlResultsV2(chunk, logger)
val output = listOf(result).processPdlResultsV2(OppholdsReglerV1, chunk, logger)

output.shouldHaveSize(1)
output[0].avsluttPeriode shouldBe true
Expand Down

0 comments on commit 9684548

Please sign in to comment.