aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects
diff options
context:
space:
mode:
authorGravatar DavidKorczynski <david@adalogics.com>2022-07-06 22:49:21 +0100
committerGravatar GitHub <noreply@github.com>2022-07-06 22:49:21 +0100
commitbddcf3a5cdeab6e71ee266eaecc2ca8f592ec6bf (patch)
tree65b1665c0129a8a865dc4654b109a303695a0fc3 /projects
parent7c0746c3611ba679527c59dec6d1fe1d2b5acb64 (diff)
msal: nit (#7961)
Fix typo in code
Diffstat (limited to 'projects')
-rw-r--r--projects/msal/fuzz_auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/msal/fuzz_auth.py b/projects/msal/fuzz_auth.py
index e6b19044..1f2598da 100644
--- a/projects/msal/fuzz_auth.py
+++ b/projects/msal/fuzz_auth.py
@@ -37,7 +37,7 @@ class FuzzHttpClient:
return FuzzResponse(fdp = self.fdp)
def get(self, url, params=None, headers=None, **kwargs):
- return MinimalResponse(fdp = self.fdp)
+ return FuzzResponse(fdp = self.fdp)
def close(self):
self.session.close()