| Index: tests/git_cl_test.py
|
| diff --git a/tests/git_cl_test.py b/tests/git_cl_test.py
|
| index 774f6f014c60a604db86c4b54ecc6bc9499ba25b..0b951dde79f2c29b50f98b9cafdd571e8553bd95 100755
|
| --- a/tests/git_cl_test.py
|
| +++ b/tests/git_cl_test.py
|
| @@ -673,24 +673,6 @@ class TestGitCl(TestCase):
|
| self.assertEqual(
|
| 'Must specify reviewers to send email.\n', stderr.getvalue())
|
|
|
| - def test_dcommit(self):
|
| - self.mock(git_cl.sys, 'stdout', StringIO.StringIO())
|
| - self.calls = (
|
| - self._dcommit_calls_1() +
|
| - self._git_sanity_checks('fake_ancestor_sha', 'working') +
|
| - self._dcommit_calls_normal() +
|
| - self._dcommit_calls_3())
|
| - git_cl.main(['dcommit'])
|
| -
|
| - def test_dcommit_bypass_hooks(self):
|
| - self.mock(git_cl.sys, 'stdout', StringIO.StringIO())
|
| - self.calls = (
|
| - self._dcommit_calls_1() +
|
| - self._dcommit_calls_bypassed() +
|
| - self._dcommit_calls_3())
|
| - git_cl.main(['dcommit', '--bypass-hooks'])
|
| -
|
| -
|
| @classmethod
|
| def _gerrit_ensure_auth_calls(cls, issue=None, skip_auth_check=False):
|
| cmd = ['git', 'config', '--bool', 'gerrit.skip-ensure-authenticated']
|
|
|