diff options
author | Mikhail Borisov <[email protected]> | 2022-02-10 16:45:40 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:45:40 +0300 |
commit | 5d50718e66d9c037dc587a0211110b7d25a66185 (patch) | |
tree | e98df59de24d2ef7c77baed9f41e4875a2fef972 /util/tests/cython/test_generic.py | |
parent | a6a92afe03e02795227d2641b49819b687f088f8 (diff) |
Restoring authorship annotation for Mikhail Borisov <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/tests/cython/test_generic.py')
-rw-r--r-- | util/tests/cython/test_generic.py | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/util/tests/cython/test_generic.py b/util/tests/cython/test_generic.py index 874eb71230b..a0d61339cc7 100644 --- a/util/tests/cython/test_generic.py +++ b/util/tests/cython/test_generic.py @@ -1,29 +1,29 @@ -# -*- coding: utf-8 -*- - -from __future__ import print_function, absolute_import, division - +# -*- coding: utf-8 -*- + +from __future__ import print_function, absolute_import, division + from util.generic.deque_ut import TestDeque -from util.generic.hash_ut import TestHash +from util.generic.hash_ut import TestHash from util.generic.hash_set_ut import TestHashSet from util.generic.list_ut import TestList -from util.generic.maybe_ut import TestMaybe +from util.generic.maybe_ut import TestMaybe from util.generic.ptr_ut import TestHolder from util.generic.string_ut import TestStroka -from util.generic.vector_ut import TestVector +from util.generic.vector_ut import TestVector from util.string.cast_ut import TestFromString, TestToString - -# Test discovery does not work in cython modules. -# Reexporting test classes here to satisfy pylint and pytest. - -__all__ = [ + +# Test discovery does not work in cython modules. +# Reexporting test classes here to satisfy pylint and pytest. + +__all__ = [ 'TestDeque', - 'TestHash', + 'TestHash', 'TestHashSet', 'TestHolder', 'TestList', - 'TestMaybe', - 'TestStroka', - 'TestVector', + 'TestMaybe', + 'TestStroka', + 'TestVector', 'TestFromString', 'TestToString', -] +] |