X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=blobdiff_plain;f=encode_submission%2Ftest_ucsc_gather.py;h=3a91465c2efb1ad9b4425468b459cc91a9b4f9e4;hp=6063951db788a2e9f9562f9a113fae5e335cec7b;hb=refs%2Fheads%2Fpython3-django1.5;hpb=4262586d10cc0cc227390873b301b55244204c11 diff --git a/encode_submission/test_ucsc_gather.py b/encode_submission/test_ucsc_gather.py index 6063951..3a91465 100644 --- a/encode_submission/test_ucsc_gather.py +++ b/encode_submission/test_ucsc_gather.py @@ -1,6 +1,6 @@ -from unittest2 import TestCase, TestSuite, defaultTestLoader +from unittest import TestCase, TestSuite, defaultTestLoader -import ucsc_gather +from . import ucsc_gather class testUCSCGather(TestCase): pass @@ -11,5 +11,5 @@ def suite(): return suite if __name__ == "__main__": - from unittest2 import main + from unittest import main main(defaultTest='suite')