Commit 74c31e19 authored by Lu Xu's avatar Lu Xu 👀

fixup

parent 915ca4fb
...@@ -131,11 +131,13 @@ class WebsocketTestClass(e2e.EndToEndTestCase): ...@@ -131,11 +131,13 @@ class WebsocketTestClass(e2e.EndToEndTestCase):
json_ru1_parameters = json.dumps(ru1_parameters) json_ru1_parameters = json.dumps(ru1_parameters)
cls.request(cls.product, cls.eru1_instance_name, for i in range(5):
filter_kw={"instance_guid": cls.enb_instance_guid}, i += 1
partition_parameter_kw={'_': json_ru1_parameters}, cls.request(cls.product, cls.eru1_instance_name,
shared=True, filter_kw={"instance_guid": cls.enb_instance_guid},
software_type='enb') partition_parameter_kw={'_': json_ru1_parameters},
shared=True, software_type='enb')
@classmethod @classmethod
def request_cell1(cls): def request_cell1(cls):
...@@ -157,11 +159,13 @@ class WebsocketTestClass(e2e.EndToEndTestCase): ...@@ -157,11 +159,13 @@ class WebsocketTestClass(e2e.EndToEndTestCase):
json_cell1_parameters = json.dumps(cell1_parameters) json_cell1_parameters = json.dumps(cell1_parameters)
cls.request(cls.product, cls.ecell1_instance_name, for i in range(5):
partition_parameter_kw={'_': json_cell1_parameters}, i += 1
software_type='enb', cls.request(cls.product, cls.ecell1_instance_name,
filter_kw={"instance_guid": cls.enb_instance_guid}, partition_parameter_kw={'_': json_cell1_parameters},
shared=True, state='started') software_type='enb',
filter_kw={"instance_guid": cls.enb_instance_guid},
shared=True, state='started')
#Request Core Network/SIM Card #Request Core Network/SIM Card
@classmethod @classmethod
......
...@@ -131,11 +131,12 @@ class WebsocketTestClass(e2e.EndToEndTestCase): ...@@ -131,11 +131,12 @@ class WebsocketTestClass(e2e.EndToEndTestCase):
json_ru1_parameters = json.dumps(ru1_parameters) json_ru1_parameters = json.dumps(ru1_parameters)
cls.request(cls.product, cls.eru1_instance_name, for i in range(5):
filter_kw={"instance_guid": cls.enb_instance_guid}, i += 1
partition_parameter_kw={'_': json_ru1_parameters}, cls.request(cls.product, cls.eru1_instance_name,
shared=True, filter_kw={"instance_guid": cls.enb_instance_guid},
software_type='enb') partition_parameter_kw={'_': json_ru1_parameters},
shared=True, software_type='enb')
@classmethod @classmethod
def request_cell1(cls): def request_cell1(cls):
...@@ -157,11 +158,13 @@ class WebsocketTestClass(e2e.EndToEndTestCase): ...@@ -157,11 +158,13 @@ class WebsocketTestClass(e2e.EndToEndTestCase):
json_cell1_parameters = json.dumps(cell1_parameters) json_cell1_parameters = json.dumps(cell1_parameters)
cls.request(cls.product, cls.ecell1_instance_name, for i in range(5):
partition_parameter_kw={'_': json_cell1_parameters}, i += 1
software_type='enb', cls.request(cls.product, cls.ecell1_instance_name,
filter_kw={"instance_guid": cls.enb_instance_guid}, partition_parameter_kw={'_': json_cell1_parameters},
shared=True, state='started') software_type='enb',
filter_kw={"instance_guid": cls.enb_instance_guid},
shared=True, state='started')
#Request Core Network/SIM Card #Request Core Network/SIM Card
@classmethod @classmethod
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment