Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
peacker authored Mar 20, 2024
2 parents edd2cbd + 2707656 commit f3a6da6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/benchmark/statistical_tests_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

def test_run_avalanche_nist_statistics_test_with_speck_cipher(benchmark):
tests = NISTStatisticalTests(speck)
benchmark(tests.nist_statistical_tests('avalanche'), 0, 10, 10)
benchmark(tests.nist_statistical_tests, test_type='avalanche')


def test_run_avalanche_nist_statistics_test_with_aes_cipher(benchmark):
tests = NISTStatisticalTests(aes)
benchmark(tests.nist_statistical_tests('avalanche'), 0, 10, 10)
benchmark(tests.nist_statistical_tests, test_type='avalanche')

0 comments on commit f3a6da6

Please sign in to comment.