/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/repository_implementations/test_revision.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-05-08 07:05:00 UTC
  • mfrom: (3376.2.15 no-asserts)
  • Revision ID: pqm@pqm.ubuntu.com-20080508070500-9zyyvsk0eev20t4w
(mbp) remove and disallow assert statements

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
                               'unicode':'\xb5',
76
76
                               'multiline':'foo\nbar\n\n'
77
77
                              })
78
 
        assert len(tree1.branch.revision_history()) > 0
 
78
        self.assertTrue(len(tree1.branch.revision_history()) > 0)
79
79
        rev_a = tree1.branch.repository.get_revision(
80
80
                            tree1.branch.last_revision())
81
81