py3: add a b'' prefix in tests/test-remotefilelog-pull-noshallow.t
This makes the test pass on Python 3.
# skip-blame because just b'' prefix.
Differential Revision: https://phab.mercurial-scm.org/D5427
--- a/contrib/python3-whitelist Fri Dec 14 12:01:47 2018 -0500
+++ b/contrib/python3-whitelist Fri Dec 14 21:00:33 2018 +0300
@@ -531,6 +531,7 @@
test-remotefilelog-keepset.t
test-remotefilelog-partial-shallow.t
test-remotefilelog-prefetch.t
+test-remotefilelog-pull-noshallow.t
test-remotefilelog-share.t
test-remotefilelog-tags.t
test-remove.t
--- a/tests/test-remotefilelog-pull-noshallow.t Fri Dec 14 12:01:47 2018 -0500
+++ b/tests/test-remotefilelog-pull-noshallow.t Fri Dec 14 21:00:33 2018 +0300
@@ -11,7 +11,7 @@
$ cat > setupremotefilelog.py << EOF
> from mercurial import extensions
> def extsetup(ui):
- > remotefilelog = extensions.find('remotefilelog')
+ > remotefilelog = extensions.find(b'remotefilelog')
> remotefilelog.onetimeclientsetup(ui)
> EOF