renames create_genlink to generic_cx

This commit is contained in:
Jed Reynolds
2020-06-03 13:41:55 -07:00
parent 551ff33b64
commit d4817c9727
2 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ if 'py-json' not in sys.path:
from LANforge import LFUtils
from LANforge.LFUtils import *
from LANforge.lfcli_base import LFCliBase
from create_genlink import CreateGenlink
from generic_cx import GenericCx
mgrURL = "http://localhost:8080/"
staName = "sta0"
@@ -165,7 +165,7 @@ class ConnectTest(LFCliBase):
time.sleep(.05)
# create generic endpoints
genl = CreateGenlink(lfclient_host=self.lfjson_host, lfclient_port=self.lfjson_port)
genl = GenericCx(lfclient_host=self.lfjson_host, lfclient_port=self.lfjson_port)
genl.createGenEndp("genTest1", 1, 1, staName, "gen_generic")
genl.createGenEndp("genTest2", 1, 1, staName, "gen_generic")
genl.setFlags("genTest1", "ClearPortOnStart", 1)