/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_revisionspec.py

  • Committer: Andrew Bennetts
  • Date: 2010-09-24 02:19:53 UTC
  • mto: This revision was merged to the branch mainline in revision 5443.
  • Revision ID: andrew.bennetts@canonical.com-20100924021953-0cg1kjtifuvkbyzp
Fix typo in test method name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
697
697
            r"Requested revision: \'annotate:annotate-tree/file1:3\' does not"
698
698
            " exist in branch: .*\nLine 3 has not been committed.")
699
699
 
700
 
    def test_non_existant_line(self):
 
700
    def test_non_existent_line(self):
701
701
        spec = RevisionSpec.from_string('annotate:annotate-tree/file1:4')
702
702
        e = self.assertRaises(errors.InvalidRevisionSpec,
703
703
                              spec.as_revision_id, self.tree.branch)