From c0ab4e31008dce662808bd7b15afcf7874cd15ae Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 13 Feb 2023 11:07:29 +0000 Subject: [PATCH] add longs to url tests --- rapids/tests/test_urls.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rapids/tests/test_urls.py b/rapids/tests/test_urls.py index 03884b7e..ca9c252e 100644 --- a/rapids/tests/test_urls.py +++ b/rapids/tests/test_urls.py @@ -9,6 +9,7 @@ from rich.pretty import pprint from bs4 import BeautifulSoup from rapids.views import GenericExamViews as RapidExamViews +from rapids.views import GenericExamViews as LongExamViews from sbas.views import GenericExamViews as SbaExamViews from longs.views import GenericExamViews as LongExamViews from physics.views import GenericExamViews as PhysicExamViews @@ -20,6 +21,7 @@ JSON_APPS = ("rapids", "anatomy", "longs") EXAM_VIEWS = ( RapidExamViews, + LongExamViews, SbaExamViews, LongExamViews, PhysicExamViews,