# HG changeset patch # User Pulkit Goyal # Date 1537457678 -10800 # 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 -r 7e3ce2131882 -r a2bb0ec3b4d4 tests/test-newercgi.t --- a/tests/test-newercgi.t Thu Sep 20 18:33:53 2018 +0300 +++ b/tests/test-newercgi.t Thu Sep 20 18:34:38 2018 +0300 @@ -39,7 +39,7 @@ > from mercurial.hgweb import hgwebdir > from mercurial.hgweb import wsgicgi > - > application = hgwebdir("hgweb.config") + > application = hgwebdir(b"hgweb.config") > wsgicgi.launch(application) > HGWEBDIR