This is an automated email from the ASF dual-hosted git repository.
danhaywood pushed a commit to branch ISIS-3091
in repository https://gitbox.apache.org/repos/asf/isis.git
The following commit(s) were added to refs/heads/ISIS-3091 by this push:
new 09da6282aa ISIS-3091: fix compile error in regression test
09da6282aa is described below
commit 09da6282aa1d302cada550d35e701c8dade22a41
Author: Dan Haywood <[email protected]>
AuthorDate: Fri Jul 22 16:30:40 2022 +0100
ISIS-3091: fix compile error in regression test
---
.../publishing/subscriber/EntityPropertyChangeSubscriberForTesting.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/regressiontests/stable/src/main/java/org/apache/isis/testdomain/publishing/subscriber/EntityPropertyChangeSubscriberForTesting.java
b/regressiontests/stable/src/main/java/org/apache/isis/testdomain/publishing/subscriber/EntityPropertyChangeSubscriberForTesting.java
index fccf966aa5..b6277f5aa5 100644
---
a/regressiontests/stable/src/main/java/org/apache/isis/testdomain/publishing/subscriber/EntityPropertyChangeSubscriberForTesting.java
+++
b/regressiontests/stable/src/main/java/org/apache/isis/testdomain/publishing/subscriber/EntityPropertyChangeSubscriberForTesting.java
@@ -50,7 +50,7 @@ implements EntityPropertyChangeSubscriber {
val propertyChangeEntry = String.format("%s/%s: '%s' -> '%s'",
entityPropertyChange.getTarget(),
- entityPropertyChange.getPropertyName(),
+ entityPropertyChange.getPropertyId(),
entityPropertyChange.getPreValue(),
entityPropertyChange.getPostValue());