summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-04-02 20:32:34 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-04-02 20:32:34 +0000
commite5734de4be27921966c14416feae1f2716598e5d (patch)
treeac4f71507df1559806c474861ad4f240b0f0cc62
parent95208e500178f2bc5de89e385b22377cf3c732bc (diff)
parenteabb8a5619b0809e10084e1e255b1b4542817eea (diff)
downloadAdServices-e5734de4be27921966c14416feae1f2716598e5d.tar.gz
Snap for 11660383 from eabb8a5619b0809e10084e1e255b1b4542817eea to android14-tests-release
Change-Id: Iafc73bb5b7cc941f02de19a41cf61e2f454734b6
-rw-r--r--adservices/tests/cts/endtoends/topics/connection/src/com/android/adservices/tests/cts/topics/connection/TopicsConnectionTest.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/adservices/tests/cts/endtoends/topics/connection/src/com/android/adservices/tests/cts/topics/connection/TopicsConnectionTest.java b/adservices/tests/cts/endtoends/topics/connection/src/com/android/adservices/tests/cts/topics/connection/TopicsConnectionTest.java
index 6339fac9eb..7654a5565e 100644
--- a/adservices/tests/cts/endtoends/topics/connection/src/com/android/adservices/tests/cts/topics/connection/TopicsConnectionTest.java
+++ b/adservices/tests/cts/endtoends/topics/connection/src/com/android/adservices/tests/cts/topics/connection/TopicsConnectionTest.java
@@ -49,8 +49,6 @@ import java.util.concurrent.Executors;
public class TopicsConnectionTest {
private static final String TAG = "TopicsConnectionTest";
- private static final String ILLEGAL_STATE_EXCEPTION_ERROR_MESSAGE = "Service is not available.";
-
// The JobId of the Epoch Computation.
private static final int EPOCH_JOB_ID = 2;
@@ -123,7 +121,6 @@ public class TopicsConnectionTest {
assertThrows(
ExecutionException.class, () -> advertisingTopicsClient1.getTopics().get());
assertThat(exception).hasCauseThat().isInstanceOf(IllegalStateException.class);
- assertThat(exception).hasMessageThat().contains(ILLEGAL_STATE_EXCEPTION_ERROR_MESSAGE);
// Now disable the Global Kill Switch, we should be able to connect to the Service normally.
enableGlobalKillSwitch(/* enabled */ false);