| Index: tests/git_common_test.py
|
| diff --git a/tests/git_common_test.py b/tests/git_common_test.py
|
| index ff5348c191166021db0c47067575ba13ce136555..e7ec3b425f4235f8de54082a6b67d5dfd96c17e6 100755
|
| --- a/tests/git_common_test.py
|
| +++ b/tests/git_common_test.py
|
| @@ -391,7 +391,6 @@ class GitMutableFunctionsTest(git_test_utils.GitRepoReadWriteTestBase,
|
| self.assertTrue(all(
|
| isinstance(x, int) for x in self.repo.run(self.gc.get_git_version)))
|
|
|
| - @unittest.expectedFailure
|
| def testGetBranchesInfo(self):
|
| self.repo.git('commit', '--allow-empty', '-am', 'foooooo')
|
| self.repo.git('checkout', '-tb', 'happybranch', 'master')
|
| @@ -430,7 +429,7 @@ class GitMutableFunctionsTest(git_test_utils.GitRepoReadWriteTestBase,
|
| 'parent_gone': (
|
| self.repo.run(self.gc.hash_one, 'parent_gone', short=True),
|
| 'to_delete',
|
| - 1 if supports_track else None,
|
| + None,
|
| None
|
| ),
|
| 'to_delete': None
|
|
|