Fixed warning in test_python.py: yaml.safe_load instead of load
[osm/IM.git] / tests / test_python.py
index 874d442..2d090b8 100644 (file)
@@ -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)