X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FIM.git;a=blobdiff_plain;f=tests%2Ftest_python.py;h=2d090b86577adeb64d6b847eb736a6398aa868ef;hp=874d442978ead05911aa5b9858deb03f1f8b6da3;hb=2eccea2a6533769f4c787c183437de65b0f46f69;hpb=55433c776d1429f91ad2f56a77cd782188ee7775 diff --git a/tests/test_python.py b/tests/test_python.py index 874d442..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 @@ -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)