File tree 1 file changed +2
-2
lines changed
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
8
8
gl_experimental : ExperimentalApi , initial_iq : ImageQuery
9
9
):
10
10
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
12
12
initial_iq .done_processing = True
13
13
gl_experimental .wait_for_confident_result (initial_iq )
14
14
mock_wait_for_result .assert_not_called ()
15
15
16
- # Should not wait if the result is from the edge
16
+ # Shouldn't wait if the result is from the edge
17
17
initial_iq .done_processing = False
18
18
initial_iq .result = BinaryClassificationResult (source = Source .EDGE , label = Label .YES )
19
19
gl_experimental .wait_for_confident_result (initial_iq )
You can’t perform that action at this time.
0 commit comments