~ubuntu-branches/debian/jessie/bzr-git/jessie

« back to all changes in this revision

Viewing changes to tests/test_push.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2010-10-11 11:35:52 UTC
  • mfrom: (1.1.12 upstream) (8.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20101011113552-4ckvgh3ki33twlxi
* New upstream snapshot.
 + Fixes compatibility with Bazaar 2.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
        self.assertEquals([], list(self.interrepo.missing_revisions([])))
63
63
 
64
64
    def test_missing_revisions_unknown_stop_rev(self):
65
 
        self.assertRaises(errors.NoSuchRevision,
66
 
                self.interrepo.missing_revisions, ["unknown"])
 
65
        self.assertEquals([],
 
66
                list(self.interrepo.missing_revisions([(None, "unknown")])))