diff --git a/pcu/PCU_Tests.ttcn b/pcu/PCU_Tests.ttcn index 3d4bcee03..804644a36 100644 --- a/pcu/PCU_Tests.ttcn +++ b/pcu/PCU_Tests.ttcn @@ -3207,7 +3207,11 @@ runs on RAW_PCU_Test_CT { if (mp_osmo_pcu_newer_than_0_9_0) { var StatsDExpects expect := { - { name := "TTCN3.pcu.sgsn.0.rx_paging_ps", mtype := "c", min := 1, max := 1 } + { name := "TTCN3.pcu.sgsn.0.rx_paging_ps", mtype := "c", min := 1, max := 1 }, + /* After the PCU receives the paging request from SGSN, + * and it doesn't have any errors, PCU sends it to the + * BTS to do paging over PCH. */ + { name := "TTCN3.bts.0.pch.requests", mtype := "c", min := 1, max := 1 } }; f_statsd_expect(expect); }