Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/run/test_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def test_job_group_requires_name(temp_dir):
exp.add(tasks) # type: ignore


class TestPlugin(ExperimentPlugin):
class DummyPlugin(ExperimentPlugin):
"""A simple test plugin to verify plugin functionality."""

def __init__(self):
Expand All @@ -211,7 +211,7 @@ def test_add_job_with_plugin(temp_dir):
"""Test adding a job with a plugin."""
with Experiment("test-exp") as exp:
task = run.Partial(dummy_function, x=1, y=2)
plugin = TestPlugin()
plugin = DummyPlugin()

exp.add(task, name="test-job", plugins=[plugin])

Expand Down
2 changes: 1 addition & 1 deletion test/test_lazy.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Outer:


@dataclass
class TestClass:
class DummyClass:
values: list


Expand Down
Loading