You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2020/01/17 14:18:31 UTC

[isis] branch master updated: ISIS-2158: fixes more tests

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new c5cd917  ISIS-2158: fixes more tests
c5cd917 is described below

commit c5cd917b2b7a3ecb2ffb5a7d7eefd263e96d6319
Author: Andi Huber <ah...@apache.org>
AuthorDate: Fri Jan 17 15:18:21 2020 +0100

    ISIS-2158: fixes more tests
---
 .../wrapper/WrapperFactoryDefault_wrappedObject_Test.java              | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/core/runtimeservices/src/test/java/org/apache/isis/core/runtimeservices/wrapper/WrapperFactoryDefault_wrappedObject_Test.java b/core/runtimeservices/src/test/java/org/apache/isis/core/runtimeservices/wrapper/WrapperFactoryDefault_wrappedObject_Test.java
index 687dec9..3ddcfae 100644
--- a/core/runtimeservices/src/test/java/org/apache/isis/core/runtimeservices/wrapper/WrapperFactoryDefault_wrappedObject_Test.java
+++ b/core/runtimeservices/src/test/java/org/apache/isis/core/runtimeservices/wrapper/WrapperFactoryDefault_wrappedObject_Test.java
@@ -162,6 +162,9 @@ public class WrapperFactoryDefault_wrappedObject_Test {
                 allowing(mockEmployeeSpec).isManagedBean();
                 will(returnValue(true));
                 
+                allowing(mockEmployeeSpec).isIdentifiable();
+                will(returnValue(true));
+                
                 allowing(mockEmployeeSpec).getCorrespondingClass();
                 will(returnValue(Employee.class));