Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wlorenzetti committed Nov 6, 2024
1 parent 671b95d commit 0f2c1cd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Binary file modified qpdnd/tests/data/project_data/ogc_api_1.gpkg
Binary file not shown.
3 changes: 1 addition & 2 deletions qpdnd/tests/test_pdnd_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
__copyright__ = 'Copyright 2015 - 2024, Gis3w'
__license__ = 'MPL 2.0'

from authlib.common.encoding import json_loads
from django.urls import reverse
from .base import TestQPDNDBase, CURRENT_PATH, TEST_BASE_PATH
from .pdnd_params import *
Expand Down Expand Up @@ -97,7 +96,7 @@ def test_status(self):
response = self.client.get(url)

self.assertEqual(response.status_code, 200)
self.assertEqual(json_loads(response.content), {"status": 200, "title": "OK"})
self.assertEqual(json.loads(response.content), {"status": 200, "title": "OK"})
self.assertEqual(response.headers['Content-Type'], 'application/problem+json')

self.client.logout()
Expand Down

0 comments on commit 0f2c1cd

Please sign in to comment.