Skip to content

Commit

Permalink
Fix name of fixture resulting from bad copy/paste
Browse files Browse the repository at this point in the history
  • Loading branch information
dagardner-nv committed Jan 11, 2024
1 parent 03168a2 commit 062c214
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/examples/llm/common/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
from _utils import import_or_skip


@pytest.fixture(name="nemollm", autouse=True, scope='session')
def nemollm_fixture(fail_missing: bool):
@pytest.fixture(name="langchain", autouse=True, scope='session')
def langchain_fixture(fail_missing: bool):
"""
All the tests in this subdir require nemollm
All the tests in this subdir require langchain
"""
skip_reason = ("Tests for the WebScraperStage require the langchain package to be installed, to install this run:\n"
"`mamba install -n base -c conda-forge conda-merge`\n"
Expand Down

0 comments on commit 062c214

Please sign in to comment.