diff options
author | Jack Lloyd <[email protected]> | 2018-10-30 12:23:12 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-10-30 12:23:12 -0400 |
commit | 6563079c80ebbbf872a4ee989405e9655f03d98f (patch) | |
tree | 129dde779797f67d2807c23caeff22ab623f3cd5 /src/scripts | |
parent | d3e8ebeba055f5c97756c7be97b98d1576df156f (diff) |
Lint fix [ci skip]
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/test_cli.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/scripts/test_cli.py b/src/scripts/test_cli.py index bd4469c8e..98423d8de 100755 --- a/src/scripts/test_cli.py +++ b/src/scripts/test_cli.py @@ -539,14 +539,14 @@ def cli_tss_tests(): test_cli("rng", ["32", "--output=%s" % (data_file)], "") test_cli("hash", ["--no-fsname", data_file], exp_hash) - M = 3 - N = 5 + m = 3 + n = 5 - test_cli("tss_split", [str(M), str(N), data_file, "--share-prefix=%s/split" % (tmp_dir)], "") + test_cli("tss_split", [str(m), str(n), data_file, "--share-prefix=%s/split" % (tmp_dir)], "") share_files = [] - for i in range(1, N+1): + for i in range(1, n+1): share = os.path.join(tmp_dir, "split%d.tss" % (i)) if not os.access(share, os.R_OK): logging.error("Failed to create expected split file %s", share) |