~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_utextwrap.py

  • Committer: INADA Naoki
  • Date: 2011-05-08 03:55:15 UTC
  • mto: This revision was merged to the branch mainline in revision 5874.
  • Revision ID: songofacandy@gmail.com-20110508035515-ypj2sbnhivfk3py1
Drop supporting byte string in private functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
        self.check_cut(s, 12, 8)
55
55
        self.check_cut(s, 13, 9)
56
56
        self.check_cut(s, 14, 9)
57
 
        self.check_cut('A'*5, 3, 3)
 
57
        self.check_cut(u'A'*5, 3, 3)
58
58
 
59
59
    def test_split(self):
60
60
        w = utextwrap.UTextWrapper()