~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/workingtree_implementations/test_workingtree.py

  • Committer: Aaron Bentley
  • Date: 2006-08-06 18:59:06 UTC
  • mto: (1731.1.34 nested-trees)
  • mto: This revision was merged to the branch mainline in revision 1910.
  • Revision ID: aaron.bentley@utoronto.ca-20060806185906-8c033dc32180fb00
Fixed unicode test cases

Show diffs side-by-side

added added

removed removed

Lines of Context:
635
635
        osutils.normalized_filename = osutils._accessible_normalized_filename
636
636
        try:
637
637
            tree.add([u'a\u030a'])
638
 
            self.assertEqual([('', 'root_directory'), (u'\xe5', 'file')],
 
638
            self.assertEqual([('', 'directory'), (u'\xe5', 'file')],
639
639
                    [(path, ie.kind) for path,ie in 
640
640
                                tree.inventory.iter_entries()])
641
641
        finally: