Skip to content

Commit

Permalink
fix: threads and assistants test cases fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
csgulati09 committed Mar 9, 2024
1 parent e2d266c commit 38a68d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_assistants.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def test_method_single_with_vk_and_provider(
for i in get_configs(f"{CONFIGS_PATH}/single_provider"):
t3_params.append((client, i))

@pytest.mark.parametrize("client, provider, auth, model", t3_params)
@pytest.mark.parametrize("client, config", t3_params)
def test_method_all_params(
self, client: Any, provider: str, auth: str, model
) -> None:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_threads.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_metadata(self):
for i in get_configs(f"{CONFIGS_PATH}/single_with_basic_config"):
t2_params.append((client, i))

@pytest.mark.parametrize("client, provider, auth, model", t2_params)
@pytest.mark.parametrize("client, config", t2_params)
def test_method_single_with_vk_and_provider(
self, client: Any, provider: str, auth: str, model
) -> None:
Expand Down

0 comments on commit 38a68d9

Please sign in to comment.