From 0422ed3f4fa87a62224095d3dc90e05714675912 Mon Sep 17 00:00:00 2001 From: lionsoul2014 Date: Thu, 30 Oct 2025 15:34:33 +0800 Subject: [PATCH] to run_search_test --- binding/python/search_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/binding/python/search_test.py b/binding/python/search_test.py index 5722c0e..efd5546 100644 --- a/binding/python/search_test.py +++ b/binding/python/search_test.py @@ -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) \ No newline at end of file + run_search_test(args.db, args.cache_policy) \ No newline at end of file