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

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Mon Apr 16 09:23:13 EDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG5dd71e9ae68a: tests: add b prefixes to test-hg-parseurl.py (authored by durin42, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D3374?vs=8279&id=8308

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