Skip to content

Commit

Permalink
Fix recursion issues in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Alschn committed Feb 2, 2024
1 parent c5e895b commit 8037caa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion links/tests/test_links_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from links.models import Link
from links.serializers.link import LinkSerializer

patch_create_async_task = patch('links.views.links.create_async_task')
patch_create_async_task = patch('links.views.links.create_async_task', return_value=None)


class LinksViewSetTests(TestCase):
Expand Down

0 comments on commit 8037caa

Please sign in to comment.