Skip to content

Commit

Permalink
fix(citrusframework#281): added cascade all to the TestResult - Scena…
Browse files Browse the repository at this point in the history
…rioExecution relation to propagate changes from TestResult to its corresponding ScenarioExecution
  • Loading branch information
Melvin Johner committed Aug 20, 2024
1 parent 3485183 commit 25827c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public class TestResult extends AbstractAuditingEntity<TestResult, Long> impleme
private String failureType;

@ToString.Exclude
@OneToOne(mappedBy = "testResult")
@OneToOne(mappedBy = "testResult", cascade = ALL)
private ScenarioExecution scenarioExecution;

/**
Expand Down

0 comments on commit 25827c6

Please sign in to comment.