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

2018-04-16 Thread durin42 (Augie Fackler)
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=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
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


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

2018-04-14 Thread durin42 (Augie Fackler)
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
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel