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 @@ -877,7 +877,7 @@ def test_delete_detector(gl: Groundlight):
877
877
gl .delete_detector (detector )
878
878
879
879
# Verify the detector is actually deleted
880
- with pytest .raises (ApiException ) as exc_info :
880
+ with pytest .raises (ApiException ):
881
881
gl .get_detector (detector .id )
882
882
883
883
# Create another detector to test deletion by ID string and that an attached image query is deleted
@@ -891,7 +891,7 @@ def test_delete_detector(gl: Groundlight):
891
891
gl .delete_detector (detector2 .id )
892
892
893
893
# Verify the second detector is also deleted
894
- with pytest .raises (ApiException ) as exc_info :
894
+ with pytest .raises (ApiException ):
895
895
gl .get_detector (detector2 .id )
896
896
897
897
# Verify the image query is also deleted
You can’t perform that action at this time.
0 commit comments