Skip to content

Commit

Permalink
chore(clearly-defined): Simplify a test asserting facets
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.org>
  • Loading branch information
sschuberth committed Nov 11, 2024
1 parent 0f14d8d commit 0d455cd
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ class ClearlyDefinedServiceFunTest : WordSpec({
ClearlyDefinedService.JSON.decodeFromStream<Curation>(it)
}

curation.described?.facets?.dev.shouldNotBeNull() should beEmpty()
curation.described?.facets?.tests.shouldNotBeNull() should beEmpty()
curation.described?.facets.shouldNotBeNull {
dev.shouldNotBeNull() should beEmpty()
tests.shouldNotBeNull() should beEmpty()
}
}
}

Expand Down

0 comments on commit 0d455cd

Please sign in to comment.