# HG changeset patch # User Augie Fackler # Date 1518845386 18000 # Node ID f718e8ec1c824efbcd14d2c908757765a20af696 # Parent a0a004b29a515edc2208662e5f1d210ea7198331 tests: add some b prefixes in test-http-bundle1.t # skip-blame just some b prefixes Differential Revision: https://phab.mercurial-scm.org/D2293 diff -r a0a004b29a51 -r f718e8ec1c82 tests/test-http-bundle1.t --- a/tests/test-http-bundle1.t Sat Feb 17 00:28:55 2018 -0500 +++ b/tests/test-http-bundle1.t Sat Feb 17 00:29:46 2018 -0500 @@ -68,7 +68,7 @@ $ cat > $TESTTMP/removesupportedformat.py << EOF > from mercurial import localrepo > def extsetup(ui): - > localrepo.localrepository.supportedformats.remove('generaldelta') + > localrepo.localrepository.supportedformats.remove(b'generaldelta') > EOF $ hg clone --config extensions.rsf=$TESTTMP/removesupportedformat.py --stream http://localhost:$HGPORT/ copy3 @@ -181,7 +181,8 @@ > if not auth: > raise common.ErrorResponse(common.HTTP_UNAUTHORIZED, 'who', > [('WWW-Authenticate', 'Basic Realm="mercurial"')]) - > if base64.b64decode(auth.split()[1]).split(':', 1) != ['user', 'pass']: + > if base64.b64decode(auth.split()[1]).split(b':', 1) != [b'user', + > b'pass']: > raise common.ErrorResponse(common.HTTP_FORBIDDEN, 'no') > def extsetup(): > common.permhooks.insert(0, perform_authentication)