diff options
author | 2023-04-03 22:53:20 +0000 | |
---|---|---|
committer | 2023-04-03 22:53:20 +0000 | |
commit | da7d670d0a0008848ed40086c6351f0f8fa3bbca (patch) | |
tree | 31ef1b8d5a53a8b66aa1bef622459e6a218f4f79 | |
parent | be2ac15ceaad1e2f03abeb84d4346fcb2445cf38 (diff) |
Fix test for wear bugreport options
Changed the assertion for wear bugreports' vibrate option, as wear bugreports have
been silenced.
Test: atest dumpstate_test
Bug: 253484871
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:2c0fae8f5dd0d7dda248039532b74a50fb74664b)
Merged-In: Ia9423adc1a4c7f400f9bcd6a3969e66e2bd27ed4
Change-Id: Ia9423adc1a4c7f400f9bcd6a3969e66e2bd27ed4
-rw-r--r-- | cmds/dumpstate/tests/dumpstate_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/dumpstate/tests/dumpstate_test.cpp b/cmds/dumpstate/tests/dumpstate_test.cpp index 7234d419d6..0012177a24 100644 --- a/cmds/dumpstate/tests/dumpstate_test.cpp +++ b/cmds/dumpstate/tests/dumpstate_test.cpp @@ -285,8 +285,8 @@ TEST_F(DumpOptionsTest, InitializeWearBugReport) { // Other options retain default values - EXPECT_TRUE(options_.do_vibrate); EXPECT_FALSE(options_.progress_updates_to_socket); + EXPECT_FALSE(options_.do_vibrate); EXPECT_FALSE(options_.show_header_only); EXPECT_FALSE(options_.is_remote_mode); EXPECT_FALSE(options_.stream_to_socket); |