diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-22 20:48:05 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-22 20:48:05 +0100 |
commit | 6985c83f55f4b60f531c77d333aeb34b0105c956 (patch) | |
tree | f85d972c2a0a3e8e65a308d327e712fe4885d2e8 /pyblackbird_cc/resources/tests/test_views.py | |
parent | c7261ae893583707d1720492f67b5a3f5ffcdf72 (diff) |
Resource now has a feature slot field
Diffstat (limited to 'pyblackbird_cc/resources/tests/test_views.py')
-rw-r--r-- | pyblackbird_cc/resources/tests/test_views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyblackbird_cc/resources/tests/test_views.py b/pyblackbird_cc/resources/tests/test_views.py index b961d3a..27a6a85 100644 --- a/pyblackbird_cc/resources/tests/test_views.py +++ b/pyblackbird_cc/resources/tests/test_views.py @@ -15,7 +15,7 @@ from ..views import create_resource @pytest.mark.django_db() -def test_create_featured_resource_view(resource, client): +def test_create_featured_resource_view(client): url = reverse("resources:create_featured") response = client.get(url) assert response.status_code == 302 |