tests: update test-largefiles-cache to pass our import checker
authorAugie Fackler <raf@durin42.com>
Tue, 22 Aug 2017 17:15:14 -0400
changeset 33990 b4707311d982
parent 33989 266192d4666b
child 33991 aaa65baf460c
tests: update test-largefiles-cache to pass our import checker
tests/test-largefiles-cache.t
--- a/tests/test-largefiles-cache.t	Tue Aug 22 17:15:09 2017 -0400
+++ b/tests/test-largefiles-cache.t	Tue Aug 22 17:15:14 2017 -0400
@@ -94,9 +94,11 @@
 
   $ cat > ls-l.py <<EOF
   > #!$PYTHON
-  > import sys, os
+  > from __future__ import absolute_import, print_function
+  > import os
+  > import sys
   > path = sys.argv[1]
-  > print('%03o' % (os.lstat(path).st_mode & 0777))
+  > print('%03o' % (os.lstat(path).st_mode & 0o777))
   > EOF
   $ chmod +x ls-l.py