aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAssam Boudjelthia <assam.boudjelthia@qt.io>2021-10-07 11:10:47 +0300
committerAssam Boudjelthia <assam.boudjelthia@qt.io>2021-10-25 09:22:08 +0000
commit43f759a6b0e1e8311d43a750c46b8257d62a9b5e (patch)
treecb2fe8baff7a50e8c65a3cdd10d082467bebb92b /tests
parentec55b1a48312187d356ef1b85adf251511d0326f (diff)
Android: remove unauthorized field form AndroidDeviceInfo
This is not really needed anymore, it was mainly used for physical devices to report whether they need user authorization to be used via adb. This is now handled by IDevice::DeviceState, where a Connected device is unauthorized, otherwise any physical device is ReadyToUse if authorization is good. Change-Id: If5c1e49b98063eabe4205cd8adb5b11515e1e1de Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/android/tst_avdmanageroutputparser.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/auto/android/tst_avdmanageroutputparser.cpp b/tests/auto/android/tst_avdmanageroutputparser.cpp
index 059f479fea..ca3dcda19c 100644
--- a/tests/auto/android/tst_avdmanageroutputparser.cpp
+++ b/tests/auto/android/tst_avdmanageroutputparser.cpp
@@ -64,7 +64,6 @@ void tst_AvdManagerOutputParser::parse_data()
"512 MB",
-1,
IDevice::DeviceConnected,
- false,
IDevice::Emulator}})
<< QStringList();
@@ -91,7 +90,6 @@ void tst_AvdManagerOutputParser::parse_data()
"512 MB",
-1,
IDevice::DeviceConnected,
- false,
IDevice::Emulator},
{"",
"TestTablet",
@@ -102,7 +100,6 @@ void tst_AvdManagerOutputParser::parse_data()
"256 MB",
-1,
IDevice::DeviceConnected,
- false,
IDevice::Emulator}})
<< QStringList();
}