diff options
author | tturney <tturney@google.com> | 2016-10-28 09:30:31 -0700 |
---|---|---|
committer | gitbuildkicker <android-build@google.com> | 2016-10-31 18:14:17 -0700 |
commit | ccadc4bc85ba64b24b37f118190f823846f37848 (patch) | |
tree | 8131dfa5065e71fbba565d3a66393976aeff9e91 | |
parent | 43462f3dc72277da54853de64629a57dc354beaa (diff) | |
download | platform_tools_test_connectivity-nougat-mr1.6-release.tar.gz platform_tools_test_connectivity-nougat-mr1.6-release.tar.bz2 platform_tools_test_connectivity-nougat-mr1.6-release.zip |
Remove log_energy_info from last testandroid-cts-7.1_r9android-cts-7.1_r8android-cts-7.1_r7android-cts-7.1_r6android-cts-7.1_r5android-cts-7.1_r4android-cts-7.1_r3android-cts-7.1_r29android-cts-7.1_r28android-cts-7.1_r27android-cts-7.1_r26android-cts-7.1_r25android-cts-7.1_r24android-cts-7.1_r23android-cts-7.1_r22android-cts-7.1_r21android-cts-7.1_r20android-cts-7.1_r2android-cts-7.1_r19android-cts-7.1_r18android-cts-7.1_r17android-cts-7.1_r16android-cts-7.1_r15android-cts-7.1_r14android-cts-7.1_r13android-cts-7.1_r12android-cts-7.1_r11android-cts-7.1_r10android-cts-7.1_r1android-7.1.1_r9android-7.1.1_r8android-7.1.1_r7android-7.1.1_r61android-7.1.1_r60android-7.1.1_r6android-7.1.1_r59android-7.1.1_r58android-7.1.1_r57android-7.1.1_r56android-7.1.1_r55android-7.1.1_r54android-7.1.1_r53android-7.1.1_r52android-7.1.1_r51android-7.1.1_r50android-7.1.1_r49android-7.1.1_r48android-7.1.1_r47android-7.1.1_r46android-7.1.1_r45android-7.1.1_r44android-7.1.1_r43android-7.1.1_r42android-7.1.1_r41android-7.1.1_r40android-7.1.1_r4android-7.1.1_r39android-7.1.1_r38android-7.1.1_r35android-7.1.1_r33android-7.1.1_r32android-7.1.1_r31android-7.1.1_r3android-7.1.1_r28android-7.1.1_r27android-7.1.1_r26android-7.1.1_r25android-7.1.1_r24android-7.1.1_r23android-7.1.1_r22android-7.1.1_r21android-7.1.1_r20android-7.1.1_r2android-7.1.1_r17android-7.1.1_r16android-7.1.1_r15android-7.1.1_r14android-7.1.1_r13android-7.1.1_r12android-7.1.1_r11android-7.1.1_r10android-7.1.1_r1nougat-mr1.8-releasenougat-mr1.7-releasenougat-mr1.6-releasenougat-mr1.5-releasenougat-mr1.4-releasenougat-mr1.3-releasenougat-mr1.2-releasenougat-mr1.1-releasenougat-mr1-volantis-releasenougat-mr1-security-releasenougat-mr1-releasenougat-mr1-flounder-releasenougat-mr1-cts-release
This also fixes ACTS since the function
no longer exists.
Bug:31966929
Change-Id: I343dcac230609ad50d1fca207420504cf36f8aaf
(cherry picked from commit be2ad89c4772b0baea3339fcb7d4b09d154f2adb)
-rw-r--r-- | acts/tests/google/bt/BtBasicFunctionalityTest.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/acts/tests/google/bt/BtBasicFunctionalityTest.py b/acts/tests/google/bt/BtBasicFunctionalityTest.py index 0cb419ab7f..c8af44e432 100644 --- a/acts/tests/google/bt/BtBasicFunctionalityTest.py +++ b/acts/tests/google/bt/BtBasicFunctionalityTest.py @@ -24,7 +24,6 @@ from queue import Empty from acts.test_utils.bt.BluetoothBaseTest import BluetoothBaseTest from acts.test_utils.bt.BtEnum import BluetoothScanModeType from acts.test_utils.bt.bt_test_utils import check_device_supported_profiles -from acts.test_utils.bt.bt_test_utils import log_energy_info from acts.test_utils.bt.bt_test_utils import reset_bluetooth from acts.test_utils.bt.bt_test_utils import set_device_name from acts.test_utils.bt.bt_test_utils import set_bt_scan_mode @@ -45,13 +44,11 @@ class BtBasicFunctionalityTest(BluetoothBaseTest): return setup_multiple_devices_for_bt_test(self.android_devices) def setup_test(self): - self.log.debug(log_energy_info(self.android_devices, "Start")) for a in self.android_devices: a.ed.clear_all_events() return True def teardown_test(self): - self.log.debug(log_energy_info(self.android_devices, "End")) return True def on_fail(self, test_name, begin_time): |