Skip to content

Commit 479959e

Browse files
committed
trigger tests
1 parent b5fa844 commit 479959e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/test_wait.py

+2-2
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)