to run_search_test

This commit is contained in:
lionsoul2014 2025-10-30 15:34:33 +08:00
parent 7f5844ca94
commit 0422ed3f4f

View File

@ -45,7 +45,7 @@ def create_searcher(db_path, cache_policy):
return searcher
def run(db_path: str, cache_policy: str):
def run_search_test(db_path: str, cache_policy: str):
# create the searcher
searcher = None
try:
@ -106,4 +106,4 @@ if __name__ == "__main__":
sys.exit()
# run the search test
run(args.db, args.cache_policy)
run_search_test(args.db, args.cache_policy)