From a9cafae83c067d58c8ba6230155b87384abe716d Mon Sep 17 00:00:00 2001 From: BuildTools Date: Sat, 28 Oct 2023 08:23:02 -0500 Subject: [PATCH] Fixing tests. --- api_v2/tests/test_router.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api_v2/tests/test_router.py b/api_v2/tests/test_router.py index c436408e..0653cbaf 100644 --- a/api_v2/tests/test_router.py +++ b/api_v2/tests/test_router.py @@ -33,7 +33,8 @@ def test_get_root_list(self): self.assertContains(response, 'itemsets', count=2) self.assertContains(response, 'weapons', count=2) self.assertContains(response, 'armor', count=2) - self.assertContains(response, 'creatures', count=2) + self.assertContains(response, 'creatures', count=4) + self.assertContains(response, 'creaturesets', count=2) def test_options_root_data(self): """