/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/blackbox/test_version.py

  • Committer: Martin Pool
  • Date: 2008-05-02 05:33:36 UTC
  • mto: This revision was merged to the branch mainline in revision 3402.
  • Revision ID: mbp@sourcefrog.net-20080502053336-nai827prrl3t21es
Fix up stray comment

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    def test_version(self):
35
35
        out = self.run_bzr("version")[0]
36
36
        self.assertTrue(len(out) > 0)
37
 
        # must occur once; could be more if it matches a file path
38
 
        first = out.splitlines()[0]
39
 
        self.assertEqualDiff(first,
 
37
        self.assertEqualDiff(out.splitlines()[0],
40
38
            "Bazaar (bzr) %s" % bzrlib.__version__)
41
39
        self.assertContainsRe(out, r"(?m)^  Python interpreter:")
42
40
        self.assertContainsRe(out, r"(?m)^  Python standard library:")