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 @@ -882,7 +882,7 @@ def test_delete_detector(gl: Groundlight):
882882 gl .get_detector (detector .id )
883883 err = exc_info .value
884884 assert err .status == HTTPStatus .GONE
885- payload = json .loads (err .body )
885+ payload = json .loads (err .body )
886886 assert det_id in payload .get ("message" , "" )
887887
888888 # Create another detector to test deletion by ID string and that an attached image query is deleted
@@ -900,7 +900,7 @@ def test_delete_detector(gl: Groundlight):
900900 gl .get_detector (detector2 .id )
901901 err = exc_info .value
902902 assert err .status == HTTPStatus .GONE
903- payload = json .loads (err .body )
903+ payload = json .loads (err .body )
904904 assert det_id in payload .get ("message" , "" )
905905
906906 # Verify the image query is also deleted
You can’t perform that action at this time.
0 commit comments