X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FIM.git;a=blobdiff_plain;f=tests%2Ftest_python.py;h=2d090b86577adeb64d6b847eb736a6398aa868ef;hp=f6b4f7d9f9389099c039269cd083fd666a645df4;hb=2eccea2a6533769f4c787c183437de65b0f46f69;hpb=00be8bb5c4445cc0e8b9a5a90189176a3d82ec42;ds=sidebyside diff --git a/tests/test_python.py b/tests/test_python.py index f6b4f7d..2d090b8 100644 --- a/tests/test_python.py +++ b/tests/test_python.py @@ -1,3 +1,18 @@ +# Copyright 2020 ETSI +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or +# implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# import osm_im.vnfd as vnfd_catalog from pyangbind.lib.serialise import pybindJSONDecoder import unittest @@ -44,7 +59,7 @@ vnfd-catalog: - name: eth0 type: EXTERNAL virtual-interface: - type: VIRTIO + type: PARAVIRT bandwidth: '0' vpci: 0000:00:0a.0 external-connection-point-ref: eth0 @@ -70,7 +85,7 @@ class PythonTest(unittest.TestCase): """ try: - data = yaml.load(VNFD_YAML) + data = yaml.safe_load(VNFD_YAML) myvnfd = vnfd_catalog.vnfd() pybindJSONDecoder.load_ietf_json(data, None, None, obj=myvnfd)