From b872731216f9956286bd2abb2fc5fd1dfd3f4fb0 Mon Sep 17 00:00:00 2001 From: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com> Date: Wed, 7 Feb 2024 00:08:44 -0800 Subject: [PATCH] has_project --- python/tests/integration_tests/test_runs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/integration_tests/test_runs.py b/python/tests/integration_tests/test_runs.py index be73b922d..20b58a251 100644 --- a/python/tests/integration_tests/test_runs.py +++ b/python/tests/integration_tests/test_runs.py @@ -52,7 +52,7 @@ def test_nested_runs( langchain_client: Client, ): project_name = "__My Tracer Project - test_nested_runs" - if langchain_client.had_project(project_name): + if langchain_client.has_project(project_name): langchain_client.delete_project(project_name=project_name) executor = ThreadPoolExecutor(max_workers=1)