D3374: tests: add b prefixes to test-hg-parseurl.py

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Sat Apr 14 15:13:18 UTC 2018


durin42 created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REVISION SUMMARY
  Now passes on Python 3.

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D3374

AFFECTED FILES
  tests/test-hg-parseurl.py

CHANGE DETAILS

diff --git a/tests/test-hg-parseurl.py b/tests/test-hg-parseurl.py
--- a/tests/test-hg-parseurl.py
+++ b/tests/test-hg-parseurl.py
@@ -9,25 +9,25 @@
 class ParseRequestTests(unittest.TestCase):
     def testparse(self):
 
-        self.assertEqual(hg.parseurl('http://example.com/no/anchor'),
-                         ('http://example.com/no/anchor', (None, [])))
-        self.assertEqual(hg.parseurl('http://example.com/an/anchor#foo'),
-                         ('http://example.com/an/anchor', ('foo', [])))
+        self.assertEqual(hg.parseurl(b'http://example.com/no/anchor'),
+                         (b'http://example.com/no/anchor', (None, [])))
+        self.assertEqual(hg.parseurl(b'http://example.com/an/anchor#foo'),
+                         (b'http://example.com/an/anchor', (b'foo', [])))
         self.assertEqual(
-            hg.parseurl('http://example.com/no/anchor/branches', ['foo']),
-            ('http://example.com/no/anchor/branches', (None, ['foo'])))
+            hg.parseurl(b'http://example.com/no/anchor/branches', [b'foo']),
+            (b'http://example.com/no/anchor/branches', (None, [b'foo'])))
         self.assertEqual(
-            hg.parseurl('http://example.com/an/anchor/branches#bar', ['foo']),
-            ('http://example.com/an/anchor/branches', ('bar', ['foo'])))
+            hg.parseurl(b'http://example.com/an/anchor/branches#bar', [b'foo']),
+            (b'http://example.com/an/anchor/branches', (b'bar', [b'foo'])))
         self.assertEqual(hg.parseurl(
-            'http://example.com/an/anchor/branches-None#foo', None),
-            ('http://example.com/an/anchor/branches-None', ('foo', [])))
-        self.assertEqual(hg.parseurl('http://example.com/'),
-                         ('http://example.com/', (None, [])))
-        self.assertEqual(hg.parseurl('http://example.com'),
-                         ('http://example.com/', (None, [])))
-        self.assertEqual(hg.parseurl('http://example.com#foo'),
-                         ('http://example.com/', ('foo', [])))
+            b'http://example.com/an/anchor/branches-None#foo', None),
+            (b'http://example.com/an/anchor/branches-None', (b'foo', [])))
+        self.assertEqual(hg.parseurl(b'http://example.com/'),
+                         (b'http://example.com/', (None, [])))
+        self.assertEqual(hg.parseurl(b'http://example.com'),
+                         (b'http://example.com/', (None, [])))
+        self.assertEqual(hg.parseurl(b'http://example.com#foo'),
+                         (b'http://example.com/', (b'foo', [])))
 
 if __name__ == '__main__':
     import silenttestrunner



To: durin42, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list