aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/tests/unit/network_services/vnf_generic/vnf/test_agnostic_vnf.py
diff options
context:
space:
mode:
authorVolodymyr Mytnyk <volodymyrx.mytnyk@intel.com>2019-01-30 13:18:22 +0000
committerGerrit Code Review <gerrit@opnfv.org>2019-01-30 13:18:22 +0000
commit9c1f115a5e6d6d47bc755da118e7b7f214351849 (patch)
tree32503668295bf615cae75e237931a0ae66156fd7 /yardstick/tests/unit/network_services/vnf_generic/vnf/test_agnostic_vnf.py
parent496777fc241939e9d9f1c592a94e24df621c0f2b (diff)
parent679b6d94288d801e84c0f22c6c0d712c08eb8458 (diff)
Merge "NSB sync: clean-up draft IPC implementation (part 1)"
Diffstat (limited to 'yardstick/tests/unit/network_services/vnf_generic/vnf/test_agnostic_vnf.py')
-rw-r--r--yardstick/tests/unit/network_services/vnf_generic/vnf/test_agnostic_vnf.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/yardstick/tests/unit/network_services/vnf_generic/vnf/test_agnostic_vnf.py b/yardstick/tests/unit/network_services/vnf_generic/vnf/test_agnostic_vnf.py
index 3374cbe76..47e464da3 100644
--- a/yardstick/tests/unit/network_services/vnf_generic/vnf/test_agnostic_vnf.py
+++ b/yardstick/tests/unit/network_services/vnf_generic/vnf/test_agnostic_vnf.py
@@ -13,7 +13,6 @@
# limitations under the License.
import unittest
-import uuid
from yardstick.network_services.vnf_generic.vnf import agnostic_vnf
@@ -44,9 +43,8 @@ VNFD = {
class TestAgnosticVnf(unittest.TestCase):
def setUp(self):
- self._id = uuid.uuid1().int
self.vnfd = VNFD['vnfd:vnfd-catalog']['vnfd'][0]
- self.agnostic_vnf = agnostic_vnf.AgnosticVnf(NAME, self.vnfd, self._id)
+ self.agnostic_vnf = agnostic_vnf.AgnosticVnf(NAME, self.vnfd)
def test_instantiate(self):
self.assertIsNone(self.agnostic_vnf.instantiate({}, {}))