diff options
| -rw-r--r-- | pydis_site/apps/api/tests/test_documentation_links.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/pydis_site/apps/api/tests/test_documentation_links.py b/pydis_site/apps/api/tests/test_documentation_links.py index 72e5cadb..39fb08f3 100644 --- a/pydis_site/apps/api/tests/test_documentation_links.py +++ b/pydis_site/apps/api/tests/test_documentation_links.py @@ -60,7 +60,7 @@ class DetailLookupDocumentationLinkAPITests(APISubdomainTestCase):      def setUpTestData(cls):          cls.doc_link = DocumentationLink.objects.create(              package='testpackage', -            base_url='https://example.com', +            base_url='https://example.com/',              inventory_url='https://example.com'          ) @@ -126,7 +126,7 @@ class DocumentationLinkCreationTests(APISubdomainTestCase):          self.body = {              'package': 'example', -            'base_url': 'https://example.com', +            'base_url': 'https://example.com/',              'inventory_url': 'https://docs.example.com'          } | 
