tests: update test-notify to pass our import checker
authorAugie Fackler <raf@durin42.com>
Tue, 22 Aug 2017 16:58:47 -0400
changeset 33969 cefad71d1a45
parent 33968 06a740540ea1
child 33970 a65f928e47d5
tests: update test-notify to pass our import checker
tests/test-notify.t
--- a/tests/test-notify.t	Tue Aug 22 16:58:43 2017 -0400
+++ b/tests/test-notify.t	Tue Aug 22 16:58:47 2017 -0400
@@ -1,6 +1,7 @@
   $ cat > $TESTTMP/filter.py <<EOF
-  > from __future__ import print_function
-  > import sys, re
+  > from __future__ import absolute_import, print_function
+  > import re
+  > import sys
   > print(re.sub("\n[ \t]", " ", sys.stdin.read()), end="")
   > EOF