Skip to content

Commit

Permalink
fix ref to old method name removed since django 4.2 assertQuerysetEqual
Browse files Browse the repository at this point in the history
  • Loading branch information
macpd committed Aug 26, 2024
1 parent ea5d564 commit 48be17f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddm/tests/test_admin_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,5 +269,5 @@ def test_project_list_returns_correct_queryset(self):
response = self.client.get(reverse('project-list'))
object_list = response.context['object_list']
expected_queryset = DonationProject.objects.filter(owner__user=self.owner)
self.assertQuerysetEqual(
self.assertQuerySetEqual(
object_list, list(expected_queryset), ordered=False)

0 comments on commit 48be17f

Please sign in to comment.