Skip to content

Commit

Permalink
feat: removed empty urlconf
Browse files Browse the repository at this point in the history
  • Loading branch information
lc-hd committed Oct 15, 2024
1 parent fa9cf33 commit c183a3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/test_native_land_data_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_error_raised_when_slug_is_not_defined_in_get_request(self):
"""
expected_message = 'Slug Variable Is Not Defined In Request'
response = self.client.get(
reverse('nld-data', {})
reverse('nld-data')
)
self.assertEqual(response.status_code, 404)
self.assertEqual(response.context['exception'], expected_message)
Expand Down

0 comments on commit c183a3f

Please sign in to comment.