~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Jelmer Vernooij
  • Date: 2012-01-18 10:42:07 UTC
  • mfrom: (6437.3.6 2.5)
  • mto: (6437.3.7 2.5)
  • mto: This revision was merged to the branch mainline in revision 6441.
  • Revision ID: jelmer@vernstok.nl-20120118104207-yc5fhsaz4mupjcam
Merge 2.5 branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
859
859
        Regression test for bug 185211.
860
860
        """
861
861
        tree = self.make_branch_and_tree('.')
862
 
        self.build_tree([u'abc\xc3/', u'abc\xc3/foo'])
 
862
        self.build_tree([u'abc\xa7/', u'abc\xa7/foo'])
863
863
 
864
 
        tree.add([u'abc\xc3/', u'abc\xc3/foo'])
 
864
        tree.add([u'abc\xa7/', u'abc\xa7/foo'])
865
865
        tree.commit('checkin')
866
866
 
867
 
        tree.rename_one(u'abc\xc3','abc')
 
867
        tree.rename_one(u'abc\xa7','abc')
868
868
 
869
869
        self.run_bzr('ci -m "non-ascii mv"')
870
870