Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mroczis committed Nov 27, 2022
2 parents 8a126bd + bf87bb4 commit 8a556e6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InvalidSecondaryCellsPostprocessor : ICellPostprocessor {
}
}
} else {
list
cells
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ data class SignalNr(
internal constructor() : this(null, null, null, null, null, null)

override val dbm: Int?
get() = csiRsrp
get() = ssRsrp

/**
* Same as [csiRsrp] just different unit.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ class ComplexPostprocessingTests : SdkTest(Build.VERSION_CODES.P) {
val postprocessors = listOf(
MocnNetworkPostprocessor(subManager, networkOperatorSimulation, serviceStateSimulation),
InvalidCellsPostprocessor(),
InvalidSecondaryCellsPostprocessor(),
PrimaryCellPostprocessor(),
SubDuplicitiesPostprocessor(subManager, networkOperatorSimulation),
PlmnPostprocessor()
Expand Down Expand Up @@ -258,6 +259,7 @@ class ComplexPostprocessingTests : SdkTest(Build.VERSION_CODES.P) {
val postprocessors = listOf(
MocnNetworkPostprocessor(subManager, networkOperatorSimulation, serviceStateSimulation),
InvalidCellsPostprocessor(),
InvalidSecondaryCellsPostprocessor(),
PrimaryCellPostprocessor(),
SubDuplicitiesPostprocessor(subManager, networkOperatorSimulation),
PlmnPostprocessor()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ class ComplexPostprocessingTests29 : SdkTest(Build.VERSION_CODES.Q) {
val postprocessors = listOf(
MocnNetworkPostprocessor(subManager, networkOperatorSimulation, serviceStateSimulation),
InvalidCellsPostprocessor(),
InvalidSecondaryCellsPostprocessor(),
PrimaryCellPostprocessor(),
SubDuplicitiesPostprocessor(subManager, networkOperatorSimulation),
PlmnPostprocessor()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class CellMapperNrTest29 : SdkTest(Build.VERSION_CODES.Q) {
}

signal.apply {
dbm shouldBe CSI_RSRP
dbm shouldBe SS_RSRP
csiRsrp shouldBe CSI_RSRP
csiRsrq shouldBe CSI_RSRQ
csiSinr shouldBe CSI_SINR
Expand Down

0 comments on commit 8a556e6

Please sign in to comment.