summaryrefslogtreecommitdiff
path: root/tests/xts.py
diff options
context:
space:
mode:
authorDylan Baker <baker.dylan.c@gmail.com>2015-01-29 11:52:39 -0800
committerDylan Baker <baker.dylan.c@gmail.com>2015-02-12 09:26:40 -0800
commit3afd11fc170a1677e35f9bb287551166e780359a (patch)
tree37f604a864db518044280e6ca3fcdcefb2e6b464 /tests/xts.py
parent64dbf9c44d7ecbca7490f7b8ba1dc83933ef94f2 (diff)
xts.py: Use __future__ functions
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'tests/xts.py')
-rw-r--r--tests/xts.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/xts.py b/tests/xts.py
index 27865a9dd..4b5ce6448 100644
--- a/tests/xts.py
+++ b/tests/xts.py
@@ -23,6 +23,7 @@
""" Test integreation for the X Test Suite """
+from __future__ import print_function, division, absolute_import
import os
import re
import sys
@@ -198,7 +199,7 @@ def populate_profile():
# If the symlink for the XTS has not been created exit
if not os.path.exists(X_TEST_SUITE):
- print "xtest symlink not found!"
+ print("xtest symlink not found!")
sys.exit(0)
profile = populate_profile()