You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: vilkår/institusjonsopphold/application/src/test/kotlin/no/nav/su/se/bakover/institusjonsopphold/application/service/OpprettOppgaverForInstitusjonsoppholdshendelserTest.kt
+2-2
Original file line number
Diff line number
Diff line change
@@ -87,7 +87,7 @@ class OpprettOppgaverForInstitusjonsoppholdshendelserTest {
87
87
)
88
88
verify(oppgaveHendelseRepo).hentForSak(argThat { it shouldBe sak.id }, anyOrNull())
89
89
verify(institusjonsoppholdHendelseRepo).hentForSak(argThat { it shouldBe sak.id })
90
-
verify(sakRepo).hentSakInfo(argThat { it shouldBe sak.id })
90
+
verify(sakRepo).hentSakInfo(argThat<UUID> { it shouldBe sak.id })
91
91
testMocks.verifyNoMoreInteractions()
92
92
}
93
93
@@ -136,7 +136,7 @@ class OpprettOppgaverForInstitusjonsoppholdshendelserTest {
136
136
)
137
137
verify(oppgaveHendelseRepo).hentForSak(argThat { it shouldBe sak.id }, anyOrNull())
138
138
verify(institusjonsoppholdHendelseRepo).hentForSak(argThat { it shouldBe sak.id })
139
-
verify(sakRepo).hentSakInfo(argThat { it shouldBe sak.id })
139
+
verify(sakRepo).hentSakInfo(argThat<UUID> { it shouldBe sak.id })
0 commit comments