/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 breezy/tests/test_urlutils.py

  • Committer: Gustav Hartvigsson
  • Date: 2021-01-11 20:19:38 UTC
  • mfrom: (7526.3.2 work)
  • Revision ID: gustav.hartvigsson@gmail.com-20210111201938-omr9wjz3qdgyxe8k
MergedĀ lp:brz

Show diffs side-by-side

added added

removed removed

Lines of Context:
715
715
        self.assertEqual('%', urlutils.unescape('%25'))
716
716
        self.assertEqual(u'\xe5', urlutils.unescape('%C3%A5'))
717
717
 
718
 
        self.assertRaises((TypeError, urlutils.InvalidURL),
719
 
                          urlutils.unescape, b'\xe5')
720
718
        self.assertEqual('\xe5', urlutils.unescape('%C3%A5'))
721
719
 
722
720
    def test_escape_unescape(self):