diff tests/test-remotefilelog-cacheprocess.t @ 40565:71b8ad0ef3e0

tests: fix up some import statements caught by Python 3 I'm curious how the import checker manages to be so much more pedantic in Python 3, but not enough to bother exploring. Differential Revision: https://phab.mercurial-scm.org/D5240
author Augie Fackler <augie@google.com>
date Wed, 07 Nov 2018 14:21:39 -0500
parents 3a333a582d7b
children def08813b290
line wrap: on
line diff
--- a/tests/test-remotefilelog-cacheprocess.t	Wed Nov 07 10:29:38 2018 -0800
+++ b/tests/test-remotefilelog-cacheprocess.t	Wed Nov 07 14:21:39 2018 -0500
@@ -16,7 +16,9 @@
   $ cd ..
 
   $ cat > cacheprocess-logger.py <<EOF
-  > 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):