Skip to content

Commit cd132d7

Browse files
authored
Fix broken tests (#189)
Signed-off-by: Hemil Desai <[email protected]>
1 parent 595c436 commit cd132d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/run/test_experiment.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def test_job_group_requires_name(temp_dir):
193193
exp.add(tasks) # type: ignore
194194

195195

196-
class TestPlugin(ExperimentPlugin):
196+
class DummyPlugin(ExperimentPlugin):
197197
"""A simple test plugin to verify plugin functionality."""
198198

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

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

test/test_lazy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Outer:
3232

3333

3434
@dataclass
35-
class TestClass:
35+
class DummyClass:
3636
values: list
3737

3838

0 commit comments

Comments
 (0)