X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=systest%2Flib%2Fosm%2Fosm.py;h=35b6144b4dd8f7ad37fec7ad73ff1cdb3e17be16;hb=dbada22a91407ded3f66e93a7f4b165147ec7db1;hp=f67cf57ea71fe46c941ccef0580bdcde809b0bf8;hpb=e609a968bf8054d76196781a4bd80e679c6184dc;p=osm%2Fdevops.git diff --git a/systest/lib/osm/osm.py b/systest/lib/osm/osm.py index f67cf57e..35b6144b 100644 --- a/systest/lib/osm/osm.py +++ b/systest/lib/osm/osm.py @@ -15,11 +15,11 @@ # under the License. -from osmclient.client import client +from osmclient import client class Osm(): - def __init__(self,osmhost,ro_host=None,descriptors_dir=None,vnfd_descriptors_list=None,nsd_descriptors_list=None,ns_name_prefix=None): - self._OsmApi=client.Client(host=osmhost,ro_host=ro_host) + def __init__(self,osmhost,sol005=None,ro_host=None,descriptors_dir=None,vnfd_descriptors_list=None,nsd_descriptors_list=None,ns_name_prefix=None): + self._OsmApi=client.Client(host=osmhost,sol005=sol005,ro_host=ro_host) self._descriptors_dir = descriptors_dir self.vnfd_descriptors_list = vnfd_descriptors_list self.nsd_descriptors_list = nsd_descriptors_list