From 54161614193076f290129b357292ca4d1ef8e5c5 Mon Sep 17 00:00:00 2001 From: Joshua Hiller Date: Wed, 24 Jul 2024 01:14:00 -0400 Subject: [PATCH] Allow 403 responses --- tests/test_fdr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_fdr.py b/tests/test_fdr.py index 33cddbe85..d4e405ebf 100644 --- a/tests/test_fdr.py +++ b/tests/test_fdr.py @@ -16,7 +16,7 @@ auth = Authorization.TestAuthorization() config = auth.getConfigObject() falcon = FDR(auth_object=config) -AllowedResponses = [200, 201, 207, 429, 500] +AllowedResponses = [200, 201, 207, 403, 429, 500] class TestFDR: def test_all_code_paths(self):