File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
tests/integration/annotation_import Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ def reset_config(self):
290290 return res ["resetModelRunConfig" ]
291291
292292 @experimental
293- def config (self ):
293+ def fetch_config (self ):
294294 res = self .client .execute (
295295 """query ModelRunPyApi($modelRunId: ID!){
296296 modelRun(where: {id : $modelRunId}){trainingMetadata}
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ def test_model_run_reset_config(model_run_with_training_metadata):
7070def test_model_run_fetch_config (model_run_with_training_metadata ):
7171 new_config = {"batch_size" : 2000 }
7272 model_run_with_training_metadata .update_config (new_config )
73- res = model_run_with_training_metadata .config ()
73+ res = model_run_with_training_metadata .fetch_config ()
7474 assert res ["trainingMetadata" ]["batchSize" ] == new_config ["batch_size" ]
7575
7676
You can’t perform that action at this time.
0 commit comments