From: Ganesh Date: Fri, 15 Jul 2022 08:02:31 +0000 (+0530) Subject: TestProperties, Change the assertion arguments to not compare a primitive value with... X-Git-Tag: 1.5.0~8 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F43%2F129943%2F3;p=ccsdk%2Fsli.git TestProperties, Change the assertion arguments to not compare a primitive value with null Signed-off-by: Ganesh Change-Id: I128fb3cebbba6817c8ae28f37a50780defe260e9 Issue-ID: CCSDK-3476 --- diff --git a/adaptors/iaas-adaptor/iaas-adaptor-bundle/src/test/java/org/onap/ccsdk/sli/adaptors/openstack/heat/model/TestProperties.java b/adaptors/iaas-adaptor/iaas-adaptor-bundle/src/test/java/org/onap/ccsdk/sli/adaptors/openstack/heat/model/TestProperties.java index 84abf12a0..70fbb753a 100644 --- a/adaptors/iaas-adaptor/iaas-adaptor-bundle/src/test/java/org/onap/ccsdk/sli/adaptors/openstack/heat/model/TestProperties.java +++ b/adaptors/iaas-adaptor/iaas-adaptor-bundle/src/test/java/org/onap/ccsdk/sli/adaptors/openstack/heat/model/TestProperties.java @@ -3,6 +3,7 @@ * ONAP : APPC * ================================================================================ * Copyright 2018 TechMahindra +* Copyright (C) 2022 Samsung Electronics *================================================================================= * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -36,7 +37,6 @@ public class TestProperties { @Test public void testGetSize() { properties.setSize(123); - assertNotNull(properties.getSize()); assertEquals(properties.getSize(),123); }