cubicweb/server/test/unittest_checkintegrity.py
changeset 11911 37726f66ff82
parent 11768 b8b71dd09a2c
child 12567 26744ad37953
equal deleted inserted replaced
11910:af969080e7e6 11911:37726f66ff82
    23 if PY2:
    23 if PY2:
    24     from StringIO import StringIO
    24     from StringIO import StringIO
    25 else:
    25 else:
    26     from io import StringIO
    26     from io import StringIO
    27 
    27 
    28 from cubicweb import devtools
    28 from cubicweb import devtools  # noqa: E402
    29 from cubicweb.devtools.testlib import CubicWebTC
    29 from cubicweb.devtools.testlib import CubicWebTC  # noqa: E402
    30 from cubicweb.server.checkintegrity import check, check_indexes, reindex_entities
    30 from cubicweb.server.checkintegrity import check, check_indexes, reindex_entities  # noqa: E402
    31 
    31 
    32 
    32 
    33 class CheckIntegrityTC(unittest.TestCase):
    33 class CheckIntegrityTC(unittest.TestCase):
    34 
    34 
    35     def setUp(self):
    35     def setUp(self):