| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl_unittest.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl_unittest.py
|
| index b747083bad878a1023d7ca45958b93e579b30634..7c47ebccffea4a03e6ca6a001739b7552ee7dd64 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl_unittest.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl_unittest.py
|
| @@ -47,18 +47,6 @@ class GitCLTest(unittest.TestCase):
|
| git_cl = GitCL(host)
|
| self.assertEqual(git_cl.get_issue_number(), 'None')
|
|
|
| - def test_is_closed_true(self):
|
| - host = MockHost()
|
| - host.executive = MockExecutive(output='closed ')
|
| - git_cl = GitCL(host)
|
| - self.assertTrue(git_cl.is_closed())
|
| -
|
| - def test_is_closed_false(self):
|
| - host = MockHost()
|
| - host.executive = MockExecutive(output='waiting')
|
| - git_cl = GitCL(host)
|
| - self.assertFalse(git_cl.is_closed())
|
| -
|
| def test_all_jobs_finished_empty(self):
|
| self.assertTrue(GitCL.all_jobs_finished([]))
|
|
|
|
|