# HG changeset patch # User Pulkit Goyal # Date 2018-09-20 15:34:38 # Node ID a2bb0ec3b4d46a7a8de7184c562cc282e7d8777f # Parent 7e3ce21318825b21ef7a7764dce9ffefb4ce79c0 py3: add a missing b'' in tests/test-newercgi.t # skip-blame because just b'' prefixes Differential Revision: https://phab.mercurial-scm.org/D4674 diff --git a/tests/test-newercgi.t b/tests/test-newercgi.t --- a/tests/test-newercgi.t +++ b/tests/test-newercgi.t @@ -39,7 +39,7 @@ This is a rudimentary test of the CGI fi > from mercurial.hgweb import hgwebdir > from mercurial.hgweb import wsgicgi > - > application = hgwebdir("hgweb.config") + > application = hgwebdir(b"hgweb.config") > wsgicgi.launch(application) > HGWEBDIR