1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

Rename guess_mbedtls_root to guess_project_root

Rename for consistency. Also, replace all calls to
this function with correct name.

Signed-off-by: Thomas Daubney <thomas.daubney@arm.com>
This commit is contained in:
Thomas Daubney
2023-11-22 17:18:22 +00:00
parent d35b94b662
commit 755d32117b
4 changed files with 8 additions and 8 deletions

View File

@ -265,7 +265,7 @@ class Auditor:
@staticmethod
def find_test_dir():
"""Get the relative path for the Mbed TLS test directory."""
return os.path.relpath(build_tree.guess_mbedtls_root() + '/tests')
return os.path.relpath(build_tree.guess_project_root() + '/tests')
class TestDataAuditor(Auditor):