Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ashishb/adb-enhanced
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c9df1a6900852e079be9f93319df924b29c58651
Choose a base ref
..
head repository: ashishb/adb-enhanced
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 90abcbd2872ee62d3d2844e691e83cd0722cbf68
Choose a head ref
Showing with 0 additions and 14 deletions.
  1. +0 −14 tests/adbe_tests.py
14 changes: 0 additions & 14 deletions tests/adbe_tests.py
Original file line number Diff line number Diff line change
@@ -470,20 +470,6 @@ def test_debug_app_set():
_assert_success('debug-app clear')


def test_debug_app_clear():
_assert_success('debug-app clear')


def test_debug_app_set_wait():
_assert_success('debug-app set %s -w' % _TEST_APP_ID)
_assert_success('debug-app clear')


def test_debug_app_set_persistant():
_assert_success('debug-app set %s -p' % _TEST_APP_ID)
_assert_success('debug-app clear')


def _assert_fail(sub_cmd):
exit_code, stdout_data, stderr_data = _execute(sub_cmd)
assert exit_code == 1, 'Command "%s" failed with stdout: "%s" and stderr: "%s"' %(sub_cmd, stdout_data, stderr_data)