Skip to content

Commit

Permalink
Fiks innholdstekstfelt (#724)
Browse files Browse the repository at this point in the history
* Fiks innholdstekstfelt

* Fiks innholdskodefelt
  • Loading branch information
tofoss authored Feb 16, 2024
1 parent 7699868 commit 4496ad4
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ data class DeltakelsesInnhold(
)

data class Innhold(
val visningstekst: String,
val type: String,
val tekst: String,
val innholdskode: String,
val beskrivelse: String?,
)
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ class DatabaseTestDataHandler(template: NamedParameterJdbcTemplate) {
"Ledetekst",
listOf(
Innhold(
visningstekst = "Visningstekst",
type = "type",
tekst = "Visningstekst",
innholdskode = "type",
beskrivelse = null
)
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ class DeltakerIngestorTest : IntegrationTestBase() {
innhold = DeltakelsesInnhold(
"Ledetekst",
listOf(Innhold(
visningstekst = "Visningstekst",
type = "type",
tekst = "Visningstekst",
innholdskode = "type",
beskrivelse = null
))
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ object TestData {
innhold = DeltakelsesInnhold(
"Ledetekst for tiltaket",
listOf(Innhold(
visningstekst = "Visningstekst",
type = "type",
tekst = "Visningstekst",
innholdskode = "type",
beskrivelse = null
))
)
Expand Down Expand Up @@ -358,8 +358,8 @@ object TestData {
"Ledetekst",
listOf(
Innhold(
visningstekst = "Visningstekst",
type = "type",
tekst = "Visningstekst",
innholdskode = "type",
beskrivelse = null
)
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ internal class DeltakerRepositoryTest : FunSpec({
val innhold = DeltakelsesInnhold(
"Ledetekst",
listOf(Innhold(
visningstekst = "Visningstekst",
type = "type",
tekst = "Visningstekst",
innholdskode = "type",
beskrivelse = null
))
)
Expand Down Expand Up @@ -106,8 +106,8 @@ internal class DeltakerRepositoryTest : FunSpec({
val innhold = DeltakelsesInnhold(
"Ledetekst",
listOf(Innhold(
visningstekst = "Visningstekst",
type = "type",
tekst = "Visningstekst",
innholdskode = "type",
beskrivelse = null
))
)
Expand Down

0 comments on commit 4496ad4

Please sign in to comment.