File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -429,3 +429,36 @@ def test_get_duplicate_targets(
429429 client .wait_for_target_processed (target_id = similar_target_id )
430430 duplicates = client .get_duplicate_targets (target_id = target_id )
431431 assert duplicates == [similar_target_id ]
432+
433+
434+ class TestUpdateTarget :
435+ """
436+ Tests for updating a target.
437+ """
438+
439+ def test_update_target (
440+ self ,
441+ client : VWS ,
442+ high_quality_image : io .BytesIO ,
443+ ) -> None :
444+ """
445+ It is possible to update a target.
446+ """
447+
448+ def test_target_status_not_success (
449+ self ,
450+ client : VWS ,
451+ high_quality_image : io .BytesIO ,
452+ ) -> None :
453+ """
454+ It is possible to update a target.
455+ """
456+
457+ def test_no_fields_given (
458+ self ,
459+ client : VWS ,
460+ high_quality_image : io .BytesIO ,
461+ ) -> None :
462+ """
463+ It is possible to update a target.
464+ """
You can’t perform that action at this time.
0 commit comments