We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0340ea8 commit aa15b8bCopy full SHA for aa15b8b
1 file changed
tests/server/request_handlers/test_default_request_handler.py
@@ -834,6 +834,11 @@ async def test_on_message_send_non_blocking():
834
835
assert task is not None
836
assert task.status.state == TaskState.completed
837
+ assert (
838
+ result.history
839
+ and task.history
840
+ and len(result.history) == len(task.history)
841
+ )
842
843
844
@pytest.mark.asyncio
@@ -876,7 +881,7 @@ async def test_on_message_send_limit_history():
876
881
877
882
878
883
879
-async def test_on_task_get_limit_history():
884
+async def test_on_get_task_limit_history():
880
885
task_store = InMemoryTaskStore()
886
push_store = InMemoryPushNotificationConfigStore()
887
0 commit comments