diff --git a/test/run/test_experiment.py b/test/run/test_experiment.py index 59a8f8a2..5de069dd 100644 --- a/test/run/test_experiment.py +++ b/test/run/test_experiment.py @@ -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): @@ -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]) diff --git a/test/test_lazy.py b/test/test_lazy.py index b704cc4b..64c8a5aa 100644 --- a/test/test_lazy.py +++ b/test/test_lazy.py @@ -32,7 +32,7 @@ class Outer: @dataclass -class TestClass: +class DummyClass: values: list