Skip to content

Commit

Permalink
FBP-289. Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
valb3r committed Jul 2, 2023
1 parent 9725e97 commit df604ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ abstract class BaseUiTest {
bounds = BoundsElement(intermediateX, intermediateY, taskSize, taskSize)
)
updateEventsRegistry(project).addObjectEvent(
BpmnShapeObjectAddedEvent(WithParentId(basicProcess.process.id, task), shape, PropertyTable(mutableMapOf(PropertyType.ID to mutableListOf(Property(task.id)))))
BpmnShapeObjectAddedEvent(WithParentId(basicProcess.process.id, task), shape, PropertyTable(mutableMapOf(PropertyType.ID to mutableListOf(Property(task.id.id)))))
)

return task.id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import java.awt.image.BufferedImage
import java.util.*
import javax.swing.JButton
import javax.swing.JCheckBox
import javax.swing.JTextField
import javax.swing.plaf.basic.BasicArrowButton
import javax.swing.table.DefaultTableModel
import javax.swing.table.TableRowSorter
Expand Down Expand Up @@ -1671,6 +1672,7 @@ internal class UiEditorLightE2ETest: BaseUiTest() {
is BasicArrowButton -> "BasicArrowButton"
is JButton -> it.text
is JCheckBox -> null
is JTextField -> null
else -> {
it
}
Expand Down

0 comments on commit df604ae

Please sign in to comment.