Skip to content

Commit 9a10889

Browse files
FabianEckermanncodebot
authored andcommitted
ci: fix inter du handover tests
1 parent 677e825 commit 9a10889

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

tests/e2e/tests/steps/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def configure_test_parameters(
176176

177177
du_node_list = [
178178
{
179-
"name": "du0-0",
179+
"name": "srs-du-1-1",
180180
"parameters": {
181181
"band": inter_freq_band,
182182
"dl_arfcn": inter_freq_cell_1_dl_arfcn,
@@ -185,7 +185,7 @@ def configure_test_parameters(
185185
},
186186
},
187187
{
188-
"name": "du1-0",
188+
"name": "srs-du-2-1",
189189
"parameters": {
190190
"band": inter_freq_band,
191191
"dl_arfcn": inter_freq_cell_2_dl_arfcn,

tests/e2e/tests/steps/stub.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1228,8 +1228,9 @@ def stop(
12281228
metrics_msg_array = []
12291229
for index, ue_stub in enumerate(ue_array):
12301230
metrics_msg_array.append(_get_metrics_msg(stub=ue_stub, name=f"UE_{index+1}", fail_if_kos=fail_if_kos))
1231-
if gnb is not None:
1232-
metrics_msg_array.append(_get_metrics_msg(stub=gnb, name="GNB", fail_if_kos=fail_if_kos))
1231+
if gnb_array is not None:
1232+
for index, gnb in enumerate(gnb_array):
1233+
metrics_msg_array.append(_get_metrics_msg(stub=gnb, name=f"GNB_{index+1}", fail_if_kos=fail_if_kos))
12331234
if fivegc is not None:
12341235
metrics_msg_array.append(_get_metrics_msg(stub=fivegc, name="5GC", fail_if_kos=fail_if_kos))
12351236

0 commit comments

Comments
 (0)