Skip to content

Commit e54ba75

Browse files
authored
[None][fix] Update tests to use standardized uppercase backend identifiers (#6921)
Signed-off-by: Bo Deng <[email protected]>
1 parent 9a133e9 commit e54ba75

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tests/integration/defs/accuracy/test_disaggregated_serving.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -574,13 +574,13 @@ def test_nixl_backend(self):
574574
ctx_server_config = {
575575
"disable_overlap_scheduler": True,
576576
"cache_transceiver_config": {
577-
"backend": "nixl"
577+
"backend": "NIXL"
578578
}
579579
}
580580
gen_server_config = {
581581
"disable_overlap_scheduler": True,
582582
"cache_transceiver_config": {
583-
"backend": "nixl"
583+
"backend": "NIXL"
584584
}
585585
}
586586
disaggregated_server_config = {
@@ -710,13 +710,13 @@ def test_nixl_backend(self):
710710
ctx_server_config = {
711711
"disable_overlap_scheduler": True,
712712
"cache_transceiver_config": {
713-
"backend": "nixl"
713+
"backend": "NIXL"
714714
}
715715
}
716716
gen_server_config = {
717717
"disable_overlap_scheduler": True,
718718
"cache_transceiver_config": {
719-
"backend": "nixl"
719+
"backend": "NIXL"
720720
}
721721
}
722722
disaggregated_server_config = {

tests/integration/defs/disaggregated/test_disaggregated.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1245,8 +1245,8 @@ def get_config_for_benchmark(model_root, backend):
12451245
def test_disaggregated_benchmark_on_diff_backends(
12461246
disaggregated_test_root, disaggregated_example_root, llm_venv,
12471247
benchmark_model_root, benchmark_root, shared_gpt_path):
1248-
nixl_config = get_config_for_benchmark(benchmark_model_root, "nixl")
1249-
ucx_config = get_config_for_benchmark(benchmark_model_root, "ucx")
1248+
nixl_config = get_config_for_benchmark(benchmark_model_root, "NIXL")
1249+
ucx_config = get_config_for_benchmark(benchmark_model_root, "UCX")
12501250
temp_dir = tempfile.TemporaryDirectory()
12511251
nixl_config_path = os.path.join(temp_dir.name, "nixl_config.yaml")
12521252
ucx_config_path = os.path.join(temp_dir.name, "ucx_config.yaml")

0 commit comments

Comments
 (0)