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 @@ -8,12 +8,12 @@ def test_wait_for_confident_result_returns_immediately_when_no_better_result_exp
88 gl_experimental : ExperimentalApi , initial_iq : ImageQuery
99):
1010 with patch .object (gl_experimental , "_wait_for_result" ) as mock_wait_for_result :
11- # Should not wait if the image query is done processing
11+ # Shouldn't wait if the image query is done processing
1212 initial_iq .done_processing = True
1313 gl_experimental .wait_for_confident_result (initial_iq )
1414 mock_wait_for_result .assert_not_called ()
1515
16- # Should not wait if the result is from the edge
16+ # Shouldn't wait if the result is from the edge
1717 initial_iq .done_processing = False
1818 initial_iq .result = BinaryClassificationResult (source = Source .EDGE , label = Label .YES )
1919 gl_experimental .wait_for_confident_result (initial_iq )
You can’t perform that action at this time.
0 commit comments