Skip to content

Commit

Permalink
Removing json
Browse files Browse the repository at this point in the history
  • Loading branch information
Filienko committed Aug 14, 2024
1 parent 58ddceb commit 2a5655f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_api.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import unittest
from flask import Flask, json
from flask import Flask
from jwt_proxy.api import blueprint, proxy_request
import json
from unittest.mock import patch, MagicMock
Expand All @@ -13,7 +13,7 @@ def setUp(self):
self.app.config['TESTING'] = True
self.app.config['UPSTREAM_SERVER'] = 'http://example.com'
self.app.config['JWKS_URL'] = 'http://jwks.example.com'
self.app.config['PATH_WHITELIST'] = ['/whitelisted']
self.app.config['PATH_WHITELIST'] = ['/whitelisted'] # Adding the whitelisted path
self.app.config['OIDC_AUTHORIZE_URL'] = 'http://authorize.example.com'
self.app.config['OIDC_TOKEN_URI'] = 'http://token.example.com'
self.app.config['OIDC_TOKEN_INTROSPECTION_URI'] = 'http://introspection.example.com'
Expand Down

0 comments on commit 2a5655f

Please sign in to comment.