diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-01-19 18:35:56 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-01-19 18:35:56 +0000 |
commit | be9fcc522a0e8dd95167236b30deb936ca6a4721 (patch) | |
tree | e1f6c7a78e49b8ee28315b188148f35a02053996 /core/TESTS/tests.py | |
parent | 939d3970aad3d1e5cf0de4e7ed09bed78e0404bb (diff) | |
download | troggle-be9fcc522a0e8dd95167236b30deb936ca6a4721.tar.gz troggle-be9fcc522a0e8dd95167236b30deb936ca6a4721.tar.bz2 troggle-be9fcc522a0e8dd95167236b30deb936ca6a4721.zip |
sort imports using isort. tested.
Diffstat (limited to 'core/TESTS/tests.py')
-rw-r--r-- | core/TESTS/tests.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/TESTS/tests.py b/core/TESTS/tests.py index e74a11b..cc10c14 100644 --- a/core/TESTS/tests.py +++ b/core/TESTS/tests.py @@ -25,10 +25,11 @@ todo = '''ADD TESTS when we are redirecting /expofiles/ to a remote file-deliver - Add test for running cavern to produce a .3d file ''' -import unittest import re +import unittest from http import HTTPStatus -from django.test import TestCase, SimpleTestCase, Client + +from django.test import Client, SimpleTestCase, TestCase #class SimplePageTest(unittest.TestCase): |