X-Git-Url: http://www.git.cypherpunks.ru/?p=pyderasn.git;a=blobdiff_plain;f=tests%2Ftest_pyderasn.py;h=401d6237222ead8c0308e9f2fe05292bedfcd3c3;hp=f8377e8881e6e4454758372c28196edac0f57c80;hb=88a72bcbbb16c2e0d58b6c6fdc6c51b8e517ee7f;hpb=3533e4b3ccb7c353bc13f924b82aae0398968d43 diff --git a/tests/test_pyderasn.py b/tests/test_pyderasn.py index f8377e8..401d623 100644 --- a/tests/test_pyderasn.py +++ b/tests/test_pyderasn.py @@ -108,11 +108,11 @@ from pyderasn import VideotexString from pyderasn import VisibleString -settings.register_profile('local', settings( +settings.register_profile("local", settings( deadline=5000, perform_health_check=False, )) -settings.load_profile('local') +settings.load_profile("local") LONG_TEST_MAX_EXAMPLES = settings().max_examples * 4 tag_classes = sampled_from(( @@ -2806,7 +2806,7 @@ class TestUTF8String(StringMixin, CommonMixin, TestCase): class UnicodeDecodeErrorMixin(object): @given(text( - alphabet=''.join(six_unichr(i) for i in list(range(0x0410, 0x044f + 1))), + alphabet="".join(six_unichr(i) for i in list(range(0x0410, 0x044f + 1))), min_size=1, max_size=5, ))