BTS: fix length of frames generated by f_TC_chan_act_encr

Since trxcon now drops L2 frames of an incorrect length, some
BTS tests which send unpadded frames with a short payload
have started to fail.

Extend the payload size generated by f_TC_chan_act_encr()
to make these tests pass again:

TC_chan_act_a51
TC_chan_act_a52
TC_chan_act_a53

Found by: Vadim Yanitskiy
Related: OS#3415

Change-Id: I0f9a40503a4ed4fce10d9655f845ac49d33f4041
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index 4f0f0ef..941be28 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -3658,7 +3658,7 @@
 	/* now we actually need to transmit some data both ways to check if the encryption works */
 	var L1ctlDlMessage dl;
 
-	var octetstring l3 := f_rnd_octstring(16);
+	var octetstring l3 := f_rnd_octstring(20);
 	var RslLinkId link_id := valueof(ts_RslLinkID_DCCH(0));
 
 	/* send UNITDATA_REQ from BTS to MS and expect it to arrive */