134
138
class TestFindUnmerged(tests.TestCaseWithTransport):
136
140
def assertUnmerged(self, local, remote, local_branch, remote_branch,
138
143
"""Check the output of find_unmerged_mainline_revisions"""
139
144
local_extra, remote_extra = missing.find_unmerged(
140
145
local_branch, remote_branch, restrict,
142
148
self.assertEqual(local, local_extra)
143
149
self.assertEqual(remote, remote_extra)