~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_nonascii.py

  • Committer: Aaron Bentley
  • Date: 2007-01-11 03:10:41 UTC
  • mfrom: (2229 +trunk)
  • mto: (2255.6.1 dirstate)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: aaron.bentley@utoronto.ca-20070111031041-cu4tmhma4sqjph48
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
123
123
        # route, and maintains the right files
124
124
        files = [a_circle_c+'.1', a_dots_c+'.2', z_umlat_c+'.3']
125
125
        try:
126
 
            self.build_tree(files)
 
126
            self.build_tree(files, line_endings='native')
127
127
        except UnicodeError:
128
128
            raise TestSkipped("filesystem cannot create unicode files")
129
129
 
144
144
            finally:
145
145
                f.close()
146
146
            self.assertEqual(shouldbe, actual, 
147
 
                             'contents of %s is incorrect: %r != %r'
 
147
                             'contents of %r is incorrect: %r != %r'
148
148
                             % (path, shouldbe, actual))
149
149
 
150
150
    def test_access_non_normalized(self):