diff --git a/tests/test-remotefilelog-bundle2-legacy.t b/tests/test-remotefilelog-bundle2-legacy.t --- a/tests/test-remotefilelog-bundle2-legacy.t +++ b/tests/test-remotefilelog-bundle2-legacy.t @@ -6,8 +6,8 @@ generaldelta to generaldelta interactions with bundle2 but legacy clients without changegroup2 support $ cat > testcg2.py << EOF + > import sys > from mercurial import changegroup, registrar, util - > import sys > cmdtable = {} > command = registrar.command(cmdtable) > @command('testcg2', norepo=True) @@ -22,7 +22,7 @@ $ hg testcg2 || exit 80 $ cat > disablecg2.py << EOF - > from mercurial import changegroup, util, error + > from mercurial import changegroup, error, util > deleted = False > def reposetup(ui, repo): > global deleted diff --git a/tests/test-remotefilelog-cacheprocess.t b/tests/test-remotefilelog-cacheprocess.t --- a/tests/test-remotefilelog-cacheprocess.t +++ b/tests/test-remotefilelog-cacheprocess.t @@ -16,7 +16,9 @@ $ cd .. $ cat > cacheprocess-logger.py < import sys, os, shutil + > import os + > import shutil + > import sys > f = open('$TESTTMP/cachelog.log', 'w') > srccache = os.path.join('$TESTTMP', 'oldhgcache') > def log(message):