Update IdentityAttributeRefTest 23/70223/1
authorRobert Varga <robert.varga@pantheon.tech>
Sat, 31 Mar 2018 13:06:35 +0000 (15:06 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Sat, 31 Mar 2018 13:06:35 +0000 (15:06 +0200)
Identities are mapped to interfaces, so we need to adjust for that.

Change-Id: Ic121793e049f25eb87e5252e07583f33a87d9ac5
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
opendaylight/config/config-api/src/test/java/org/opendaylight/controller/config/api/IdentityAttributeRefTest.java

index 559e0663def9d2949dc7a95fe199314f0919e32d..5daac19b76f0090ce5695062f10640ce8049129a 100644 (file)
@@ -70,7 +70,7 @@ public class IdentityAttributeRefTest {
         verify(res).validateIdentity(attr, Identity.class, jmxAttr);
     }
 
-    static class Identity extends BaseIdentity {}
+    interface Identity extends BaseIdentity {}
 
-    static class SubIdentity extends Identity {}
+    interface SubIdentity extends Identity {}
 }