Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/fix_subtyping_in_DictService' in…
Browse files Browse the repository at this point in the history
…to fix_subtyping_in_DictService
  • Loading branch information
Marcel Philipiak committed Nov 26, 2024
2 parents 155a359 + ce5448a commit 4204af0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import org.apache.commons.lang3.ClassUtils
import pl.touk.nussknacker.engine.api.typed.typing._

/**
* This class determine whether we can convert a class to another one. We provide two modes of conversion -
* This class determine whether we can assign one type to another type - that is if its the same class, a subclass or can be converted to another type. We provide two modes of conversion -
* 1. Loose conversion is based on the fact that TypingResults are
* sets of possible supertypes with some additional restrictions (like TypedObjectTypingResult). It is basically how SpEL
* can convert things. Like CommonSupertypeFinder it's in the spirit of "Be type safe as much as possible, but also provide some helpful
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@ class DictApiHttpServiceSpec
.post(s"$nuDesignerHttpAddress/api/processDefinitionData/${Streaming.stringify}/dicts")
.Then()
.statusCode(200)
.equalsJsonBody(
s"""[
|]""".stripMargin
)
.equalsJsonBody("[]")

}

Expand Down

0 comments on commit 4204af0

Please sign in to comment.