File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -336,7 +336,7 @@ def test_dataset_export_autotag_tagged_items(CLIENT):
336
336
dataset = CLIENT .get_dataset (DATASET_WITH_AUTOTAG )
337
337
338
338
with pytest .raises (NucleusAPIError ) as api_error :
339
- dataset .autotag_scores (autotag_name = "NONSENSE_GARBAGE" )
339
+ dataset .autotag_items (autotag_name = "NONSENSE_GARBAGE" )
340
340
assert (
341
341
f"The autotag NONSENSE_GARBAGE was not found in dataset { DATASET_WITH_AUTOTAG } "
342
342
in str (api_error .value )
@@ -366,7 +366,7 @@ def test_dataset_export_autotag_training_items(CLIENT):
366
366
dataset = CLIENT .get_dataset (DATASET_WITH_AUTOTAG )
367
367
368
368
with pytest .raises (NucleusAPIError ) as api_error :
369
- dataset .autotag_scores (autotag_name = "NONSENSE_GARBAGE" )
369
+ dataset .autotag_training_items (autotag_name = "NONSENSE_GARBAGE" )
370
370
assert (
371
371
f"The autotag NONSENSE_GARBAGE was not found in dataset { DATASET_WITH_AUTOTAG } "
372
372
in str (api_error .value )
You can’t perform that action at this time.
0 commit comments