D4611: py3: add b'' prefixes in tests/test-hgweb-no-request-uri.t

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Sun Sep 16 17:21:37 EDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHGa12916cfef9e: py3: add b'' prefixes in tests/test-hgweb-no-request-uri.t (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D4611?vs=11100&id=11106

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

AFFECTED FILES
  tests/test-hgweb-no-request-uri.t

CHANGE DETAILS

diff --git a/tests/test-hgweb-no-request-uri.t b/tests/test-hgweb-no-request-uri.t
--- a/tests/test-hgweb-no-request-uri.t
+++ b/tests/test-hgweb-no-request-uri.t
@@ -64,22 +64,22 @@
   > output = stringio()
   > env['PATH_INFO'] = '/'
   > env['QUERY_STRING'] = 'style=atom'
-  > process(hgweb('.', name = 'repo'))
+  > process(hgweb(b'.', name = b'repo'))
   > 
   > output = stringio()
   > env['PATH_INFO'] = '/file/tip/'
   > env['QUERY_STRING'] = 'style=raw'
-  > process(hgweb('.', name = 'repo'))
+  > process(hgweb(b'.', name = b'repo'))
   > 
   > output = stringio()
   > env['PATH_INFO'] = '/'
   > env['QUERY_STRING'] = 'style=raw'
-  > process(hgwebdir({'repo': '.'}))
+  > process(hgwebdir({'repo': b'.'}))
   > 
   > output = stringio()
   > env['PATH_INFO'] = '/repo/file/tip/'
   > env['QUERY_STRING'] = 'style=raw'
-  > process(hgwebdir({'repo': '.'}))
+  > process(hgwebdir({'repo': b'.'}))
   > EOF
   $ $PYTHON request.py
   ---- STATUS



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


More information about the Mercurial-devel mailing list