From 1d4558951e6d97ac1642e8f88d1ba1747a31ce33 Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Mon, 14 Dec 2020 22:42:40 +0000 Subject: [PATCH] Fixed warning in test_python.py: yaml.safe_load instead of load Change-Id: Ic324701eee6c808bee04690a41ad4e53cc68624a Signed-off-by: garciadeblas --- tests/test_python.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) 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) -- 2.17.1