summaryrefslogtreecommitdiff
path: root/tests/test_fetch_branches.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_fetch_branches.py')
-rw-r--r--tests/test_fetch_branches.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_fetch_branches.py b/tests/test_fetch_branches.py
index 45991ae..781f023 100644
--- a/tests/test_fetch_branches.py
+++ b/tests/test_fetch_branches.py
@@ -41,7 +41,8 @@ class TestFetchBranches(test_util.TestBase):
heads = dict([(ctx.branch(), ctx) for ctx in heads])
# Let these tests disabled yet as the fix is not obvious
self.assertEqual(heads['branch1'].manifest().keys(), ['b'])
- self.assertEqual(heads['branch2'].manifest().keys(), ['a', 'b'])
+ self.assertEqual(sorted(heads['branch2'].manifest().keys()),
+ ['a', 'b'])
def test_unorderedbranch(self):
repo = self._load_fixture_and_fetch('unorderedbranch.svndump')