fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42021?usp=email )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: bts: fix verdict string in f_verify_ramp_up() ......................................................................
bts: fix verdict string in f_verify_ramp_up()
Change-Id: I6e48c61ada7daa904734658709c1be384286041e --- M bts/BTS_Tests.ttcn 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: pespin: Looks good to me, approved Jenkins Builder: Verified
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn index 9398800..5ec0f1e 100644 --- a/bts/BTS_Tests.ttcn +++ b/bts/BTS_Tests.ttcn @@ -2798,7 +2798,7 @@ if (initial_rx_lvl >= max_rx_lvl / 2) { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Detected high initial tx power during ramp up: ", - initial_rx_lvl , ", full power is", max_rx_lvl)); + initial_rx_lvl , ", full power is ", max_rx_lvl)); } }