diff options
author | lloyd <[email protected]> | 2008-10-12 16:27:35 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-12 16:27:35 +0000 |
commit | 88f624e9ac8511abebbcddaac74789683ff4438d (patch) | |
tree | 0b3129dc35e46ea04e20318bfb6af9b86f40a49a /wrappers | |
parent | 460a802025d3b0cbe882e08273e824fd09daa8bf (diff) |
Fix path to NIST test certificates in Python version
Diffstat (limited to 'wrappers')
-rwxr-xr-x | wrappers/boost-python/nisttest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wrappers/boost-python/nisttest.py b/wrappers/boost-python/nisttest.py index a16ebf791..3ea8fda0f 100755 --- a/wrappers/boost-python/nisttest.py +++ b/wrappers/boost-python/nisttest.py @@ -49,7 +49,7 @@ def main(): results = load_results('results.txt') - for root, dirs, files in os.walk('../nist_tests/tests'): + for root, dirs, files in os.walk('../../checks/nist_tests/tests'): if files: thistest = root[root.rfind('/')+1:] if thistest in results: |