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 f0c16d25b4 ISIS-3091: fix compile error in regression test
f0c16d25b4 is described below
commit f0c16d25b4bb83c9f4af4a670e1db67fd53969c1
Author: Dan Haywood <[email protected]>
AuthorDate: Fri Jul 22 16:28:59 2022 +0100
ISIS-3091: fix compile error in regression test
---
.../subscriber/EntityPropertyChangeSubscriberForTesting.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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 d16f413699..fccf966aa5 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
@@ -49,7 +49,7 @@ implements EntityPropertyChangeSubscriber {
public void onChanging(final EntityPropertyChange entityPropertyChange) {
val propertyChangeEntry = String.format("%s/%s: '%s' -> '%s'",
- entityPropertyChange.getTargetClassName(),
+ entityPropertyChange.getTarget(),
entityPropertyChange.getPropertyName(),
entityPropertyChange.getPreValue(),
entityPropertyChange.getPostValue());
@@ -80,4 +80,4 @@ implements EntityPropertyChangeSubscriber {
-}
\ No newline at end of file
+}