diff options
author | DR695H <dr695h@att.com> | 2019-09-16 13:21:47 -0400 |
---|---|---|
committer | Brian Freeman <bf1936@att.com> | 2019-09-17 14:40:35 +0000 |
commit | cccad65a0c963240df76dde1944c9e7da25cc4da (patch) | |
tree | 344f1423b8676e5a95aa221c7bfa323d24400f19 /robot/resources/sdnc_interface.robot | |
parent | 6d269fdcbcf374a273f7ac0b68559951ea336654 (diff) |
add needed import and move cds to common folder
Issue-ID: TEST-214
Change-Id: I7356bd28230adbdd7e56f6488000da71719469d8
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robot/resources/sdnc_interface.robot')
-rw-r--r-- | robot/resources/sdnc_interface.robot | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/robot/resources/sdnc_interface.robot b/robot/resources/sdnc_interface.robot index 9b56fef4..77c65f03 100644 --- a/robot/resources/sdnc_interface.robot +++ b/robot/resources/sdnc_interface.robot @@ -7,7 +7,7 @@ Library OperatingSystem Library Collections Library String Library ONAPLibrary.ServiceMapping WITH NAME ServiceMapping -Library ONAPLibrary.PreloadData WITH NAME Preload +Library ONAPLibrary.PreloadData WITH NAME PreloadData Library ONAPLibrary.Templating WITH NAME Templating Library ONAPLibrary.SDNC WITH NAME SDNC Resource global_properties.robot @@ -157,9 +157,9 @@ Get Template Parameters # Mash together the defaults dict with the test case dict to create the set of # preload parameters # - Preload.Set Directory preload ./demo/preload_data - ${defaults}= Get Default Preload Data preload - ${template}= Get Preload Data preload ${service} ${template} + PreloadData.Set Directory preload ./demo/preload_data + ${defaults}= PreloadData.Get Default Preload Data preload + ${template}= PreloadData.Get Preload Data preload ${service} ${template} # add all of the defaults to template... @{keys}= Get Dictionary Keys ${defaults} :FOR ${key} IN @{keys} |