# HG changeset patch # User Pulkit Goyal # Date 1544810433 -10800 # Node ID 52fbf8a9907cf7ba6f4caffea7d8ec2a72c31585 # Parent f732889abe0ecde2931ed51bf3452b84580c1831 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 diff -r f732889abe0e -r 52fbf8a9907c contrib/python3-whitelist --- 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 diff -r f732889abe0e -r 52fbf8a9907c tests/test-remotefilelog-pull-noshallow.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