diff --git a/app/grants/models.py b/app/grants/models.py index e12ec9e31bd..dadf9aa9d49 100644 --- a/app/grants/models.py +++ b/app/grants/models.py @@ -89,6 +89,8 @@ def tech_categories(): 'community', 'eth2.0', 'eth1.x', + 'devEx', + 'usability', ] @staticmethod diff --git a/app/grants/tests/test_views.py b/app/grants/tests/test_views.py index 82bb013f7c4..19a6659983c 100644 --- a/app/grants/tests/test_views.py +++ b/app/grants/tests/test_views.py @@ -51,12 +51,14 @@ def test_retrieving_all_categories(self): ('community',5), ('eth2.0',6), ('eth1.x',7), - ('twitter', 8), - ('reddit',9), - ('blog',10), - ('notes',11), - ('COVID19 research',12), - ('COVID19 response',13) + ('devEx',8), + ('usability',9), + ('twitter', 10), + ('reddit',11), + ('blog',12), + ('notes',13), + ('COVID19 research',14), + ('COVID19 response',15) ] self.assertEqual(all_categories, expected_response) @@ -72,7 +74,9 @@ def test_retrieving_tech_categories(self): ('wallets',4), ('community',5), ('eth2.0',6), - ('eth1.x',7) + ('eth1.x',7), + ('devEx', 8), + ('usability', 9) ] self.assertEqual(tech_categories, expected_response)