~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Jelmer Vernooij
  • Date: 2012-02-20 13:42:32 UTC
  • mto: (6437.23.12 2.5)
  • mto: This revision was merged to the branch mainline in revision 6473.
  • Revision ID: jelmer@samba.org-20120220134232-hqcu4hi2vozi4mfl
Fix test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
    def test_info_empty_controldir_verbose(self):
61
61
        self.make_bzrdir('ctrl')
62
62
        out, err = self.run_bzr('info -v ctrl')
63
 
        self.assertEquals(out,
 
63
        self.assertEqualDiff(out,
64
64
            'Empty control directory (format: 2a or pack-0.92)\n'
65
65
            'Location:\n'
66
 
            '  control directory: ctrl\n')
 
66
            '  control directory: ctrl\n\n'
 
67
            'Format:\n'
 
68
            '       control: Meta directory format 1\n\n'
 
69
            'Control directory:\n'
 
70
            '         0 branches\n')
67
71
        self.assertEquals(err, '')
68
72
 
69
73
    def test_info_dangling_branch_reference(self):