diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-02-13 01:47:40 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-02-13 01:47:40 +0300 |
commit | a299d7c377b52b7efac383b3840b11372cd63478 (patch) | |
tree | 6296833e561c5968409df2dcbea9b0e357d3ecb1 /test/nist-sp-800-38a.py | |
parent | test: use Enum (diff) | |
download | aes-tools-a299d7c377b52b7efac383b3840b11372cd63478.tar.gz aes-tools-a299d7c377b52b7efac383b3840b11372cd63478.zip |
test: code style
Diffstat (limited to '')
-rw-r--r-- | test/nist-sp-800-38a.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/nist-sp-800-38a.py b/test/nist-sp-800-38a.py index c0ad9e6..1bbd3bc 100644 --- a/test/nist-sp-800-38a.py +++ b/test/nist-sp-800-38a.py @@ -240,10 +240,10 @@ if __name__ == '__main__': exit_codes.extend(_run_tests(tools, algorithm, mode, use_boxes=args.use_boxes)) logging.info('Test exit codes:') - logging.info('\tSkipped: {0}'.format(exit_codes.count(TestExitCode.SKIPPED))) - logging.info('\tError(s): {0}'.format(exit_codes.count(TestExitCode.ERROR))) - logging.info('\tSucceeded: {0}'.format(exit_codes.count(TestExitCode.SUCCESS))) - logging.info('\tFailed: {0}'.format(exit_codes.count(TestExitCode.FAILURE))) + logging.info('\tSkipped: {}'.format(exit_codes.count(TestExitCode.SKIPPED))) + logging.info('\tError(s): {}'.format(exit_codes.count(TestExitCode.ERROR))) + logging.info('\tSucceeded: {}'.format(exit_codes.count(TestExitCode.SUCCESS))) + logging.info('\tFailed: {}'.format(exit_codes.count(TestExitCode.FAILURE))) if (exit_codes.count(TestExitCode.ERROR) == 0 and exit_codes.count(TestExitCode.FAILURE) == 0): sys.exit() |