summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Merger <noreply-android-build-merger@google.com>2019-01-04 18:33:53 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-01-04 18:33:53 +0000
commitcd0a2487942bc9a616c47cd5c5e923de44213c68 (patch)
treec2e96658684a1c61ca58f26c48b06d0053d4e8d2
parent09987224755b58c852ab82b4ef032368b6d46dad (diff)
parent6f0cbdd67230f30a155eec10c7674f6b11824e2e (diff)
downloadcts-cd0a2487942bc9a616c47cd5c5e923de44213c68.tar.gz
Merge "Merge "Update valid SV ID range of Beidou and Galileo" into nougat-cts-dev am: c9c712aa92" into nougat-mr1-cts-dev
-rw-r--r--tests/tests/location/src/android/location/cts/TestMeasurementUtil.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/tests/location/src/android/location/cts/TestMeasurementUtil.java b/tests/tests/location/src/android/location/cts/TestMeasurementUtil.java
index 891fa115531..a5abe19c8e4 100644
--- a/tests/tests/location/src/android/location/cts/TestMeasurementUtil.java
+++ b/tests/tests/location/src/android/location/cts/TestMeasurementUtil.java
@@ -370,17 +370,17 @@ public final class TestMeasurementUtil {
softAssert.assertTrue("svid: Space Vehicle ID. Constellation type " +
"= CONSTELLATION_BEIDOU",
timeInNs,
- "1 <= X <= 36",
+ "1 <= X <= 63",
svidValue,
- svid >= 1 && svid <= 36);
+ svid >= 1 && svid <= 63);
break;
case GnssStatus.CONSTELLATION_GALILEO:
softAssert.assertTrue("svid: Space Vehicle ID. Constellation type " +
"= CONSTELLATION_GALILEO",
timeInNs,
- "1 <= X <= 37",
+ "1 <= X <= 36",
String.valueOf(svid),
- svid >= 1 && svid <= 37);
+ svid >= 1 && svid <= 36);
break;
default:
// Explicit fail if did not receive valid constellation type.