Small changes to test_formatter

This commit is contained in:
cuom1999 2024-01-08 13:06:18 -06:00
parent d7080a4d1b
commit 2b84d62260
4 changed files with 14 additions and 15 deletions

View file

@ -420,12 +420,12 @@ urlpatterns = [
url(
r"^edit_page$",
test_formatter.EditTestFormatter.as_view(),
name="edit_page",
name="test_formatter_edit",
),
url(
r"^download_page$",
test_formatter.DownloadTestFormatter.as_view(),
name="download_page",
name="test_formatter_download",
),
]
),