diff options
author | Ganesh <ganesh.c@samsung.com> | 2022-07-15 13:32:31 +0530 |
---|---|---|
committer | KAPIL SINGAL <ks220y@att.com> | 2022-07-18 13:47:08 +0000 |
commit | 0fb0b60d8c680a076070b866b5eade38661b917a (patch) | |
tree | 8116624b92e0ae509e3ed4ba50938b47e099514f | |
parent | 01ec365d01605dd6b86c2c972eeea969835e74b8 (diff) |
TestProperties, Change the assertion arguments to not compare a primitive value with null
Signed-off-by: Ganesh <ganesh.c@samsung.com>
Change-Id: I128fb3cebbba6817c8ae28f37a50780defe260e9
Issue-ID: CCSDK-3476
-rw-r--r-- | adaptors/iaas-adaptor/iaas-adaptor-bundle/src/test/java/org/onap/ccsdk/sli/adaptors/openstack/heat/model/TestProperties.java | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |