Fix property validation for data type in model
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / operations / impl / PropertyOperationTest.java
index a3c9bca..ff41d5d 100644 (file)
@@ -795,7 +795,7 @@ public class PropertyOperationTest extends ModelTestBase {
                // test 1
                testSubject = createTestSubject();
                property = null;
-               result = testSubject.isPropertyTypeValid(property, null);
+               result = testSubject.isPropertyTypeValid(property, (String)null);
                Assert.assertEquals(false, result);
        }