diff options
author | Anthony LaTorre <devnull@localhost> | 2013-11-08 14:49:15 -0600 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2021-05-09 08:42:39 -0700 |
commit | 88ebc2bcc8671667c5c283b3bac5e648ab15ca7b (patch) | |
tree | 9b25e93e202adf566ca0dbe98f7657f12f537067 /test/unittest_find.py | |
parent | 90461d74a4b416598ea50f23364b6e0fa050bc59 (diff) | |
download | chroma-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.py | 7 |
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 + |