/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_urlutils.py

  • Committer: John Arbash Meinel
  • Date: 2006-06-30 15:32:22 UTC
  • mto: (1711.4.39 win32-accepted)
  • mto: This revision was merged to the branch mainline in revision 1836.
  • Revision ID: john@arbash-meinel.com-20060630153222-86afc1dde3d4867d
Fix expected value for urlutils tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
380
380
 
381
381
        test('http://foo', 'http://foo')
382
382
        if sys.platform == 'win32':
383
 
            test('c:/foo/path', 'file:///C|/foo/path')
384
 
            test('c:/foo/path', 'file:///C:/foo/path')
 
383
            test('C:/foo/path', 'file:///C|/foo/path')
 
384
            test('C:/foo/path', 'file:///C:/foo/path')
385
385
        else:
386
386
            test('/foo/path', 'file:///foo/path')
387
387