~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_version.py

  • Committer: Martin Pool
  • Date: 2008-04-10 07:02:31 UTC
  • mto: (3360.2.3 prepare-1.4)
  • mto: This revision was merged to the branch mainline in revision 3385.
  • Revision ID: mbp@sourcefrog.net-20080410070231-movepf7e1890j2qn
Correct short version test

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
    def test_version_short(self):
48
48
        out = self.run_bzr(["version", "--short"])[0]
49
 
        self.assertEqualDiff(out, bzrlib.version_string)
 
49
        self.assertEqualDiff(out, bzrlib.version_string + '\n')
50
50
 
51
51
 
52
52
class TestVersionUnicodeOutput(TestCaseInTempDir):