File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
tests/unittests/scheduler/uci_and_pucch Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,11 @@ class dummy_harq_timeout_notifier : public harq_timeout_notifier
151151test_bench::test_bench (const test_bench_params& params,
152152 unsigned max_pucchs_per_slot_,
153153 unsigned max_ul_grants_per_slot_) :
154- expert_cfg{config_helpers::make_default_scheduler_expert_config ()},
154+ expert_cfg{[]() -> scheduler_expert_config {
155+ auto default_exp_cfg = config_helpers::make_default_scheduler_expert_config ();
156+ default_exp_cfg.ue .min_pucch_pusch_prb_distance = 0U ;
157+ return default_exp_cfg;
158+ }()},
155159 cell_cfg{[this , ¶ms]() -> const cell_configuration& {
156160 auto cell_req = make_custom_sched_cell_configuration_request (
157161 params.pucch_res_common , params.is_tdd , params.cfg_for_mimo_4x4 ? 4 : 1 );
You can’t perform that action at this time.
0 commit comments