Changes between Version 3 and Version 4 of Ticket #35245, comment 4
- Timestamp:
- Feb 23, 2024, 2:37:11 AM (9 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35245, comment 4
v3 v4 1 Tried to write a UTin [https://github.com/django/django/blob/b9d539cca79d8100b24b30fabdb21d10154634ec/tests/async/test_async_queryset.py] based on OP's case: [https://github.com/LuisGMM/django_bug/blob/a43fb2584c7a15ecd2ada16b9f90fe1df7fe841c/project/app/providers/base.py#L8] .1 Tried to write UTs in [https://github.com/django/django/blob/b9d539cca79d8100b24b30fabdb21d10154634ec/tests/async/test_async_queryset.py] based on OP's case: [https://github.com/LuisGMM/django_bug/blob/a43fb2584c7a15ecd2ada16b9f90fe1df7fe841c/project/app/providers/base.py#L8] . 2 2 {{{#!python 3 3 async def test_afirst_gather(self): … … 17 17 self.assertEqual(instance[0], self.s1) 18 18 }}} 19 This UT worksfine so I think the issue is not related to asyncio.gather and async ORM call.19 UTs work fine so I think the issue is not related to asyncio.gather and async ORM call.