Skip to content

Commit

Permalink
test: fixed tests after breaking change in modelix.core:5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
slisson committed Mar 18, 2024
1 parent 1187470 commit 1d9fca2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ private fun NodeData.normalize(): NodeData {

private fun normalizeNodeData(node: NodeData, originalIds: MutableMap<String, String>): NodeData {
var filteredChildren = node.children
var filteredProperties = node.properties.minus(NodeData.ID_PROPERTY_KEY).minus("\$originalId")
var filteredProperties = node.properties.minus(NodeData.ID_PROPERTY_KEY).minus("\$originalId").minus("#mpsNodeId#")
var replacedId = (originalIds[node.id] ?: node.id)
var replacedRole = node.role
when (node.concept) {
Expand Down

0 comments on commit 1d9fca2

Please sign in to comment.