File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class Outer:
3232
3333
3434@dataclass
35- class TestClass :
35+ class DummyClass :
3636 values : list
3737
3838
You can’t perform that action at this time.
0 commit comments