fix syntax

This commit is contained in:
protolambda 2019-05-24 01:15:49 +02:00
parent 4ccd304603
commit 57dd9fc4ff
No known key found for this signature in database
GPG Key ID: EC89FDBB2B4C7623

View File

@ -16,7 +16,7 @@ def generate_from_tests(src, bls_active=True):
for name in fn_names:
tfn = getattr(src, name)
try:
test_case = tfn(generator_mode=True, bls_active=bls_active))
test_case = tfn(generator_mode=True, bls_active=bls_active)
# If no test case data is returned, the test is ignored.
if test_case is not None:
out.append(test_case)