summaryrefslogtreecommitdiff
path: root/test/unittest_find.py
diff options
context:
space:
mode:
authorAnthony LaTorre <devnull@localhost>2013-11-08 14:49:15 -0600
committertlatorre <tlatorre@uchicago.edu>2021-05-09 08:42:39 -0700
commit88ebc2bcc8671667c5c283b3bac5e648ab15ca7b (patch)
tree9b25e93e202adf566ca0dbe98f7657f12f537067 /test/unittest_find.py
parent90461d74a4b416598ea50f23364b6e0fa050bc59 (diff)
downloadchroma-88ebc2bcc8671667c5c283b3bac5e648ab15ca7b.tar.gz
chroma-88ebc2bcc8671667c5c283b3bac5e648ab15ca7b.tar.bz2
chroma-88ebc2bcc8671667c5c283b3bac5e648ab15ca7b.zip
update tests to work for python versions <2.7
Diffstat (limited to 'test/unittest_find.py')
-rw-r--r--test/unittest_find.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unittest_find.py b/test/unittest_find.py
new file mode 100644
index 0000000..b8c8849
--- /dev/null
+++ b/test/unittest_find.py
@@ -0,0 +1,7 @@
+import sys
+
+if sys.version_info < (2,7):
+ import unittest2 as unittest
+else:
+ import unittest
+