From 883dff38f16537e41f0eb5d699845263c96be5cb Mon Sep 17 00:00:00 2001 From: David Aaron Suddjian Date: Sat, 11 Dec 2021 02:43:56 -0800 Subject: [PATCH] Revert "403 works now!" This reverts commit df2f49a6d4267b3cccccd66549d54e25bae8e0b6. --- tests/integration_tests/security/api_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_tests/security/api_tests.py b/tests/integration_tests/security/api_tests.py index fcacd7ce668f..45545c70c403 100644 --- a/tests/integration_tests/security/api_tests.py +++ b/tests/integration_tests/security/api_tests.py @@ -75,7 +75,7 @@ def test_post_guest_token_unauthorized(self): """ self.login(username="gamma") response = self.client.post(self.uri) - self.assert403(response) + self.assert401(response) def test_post_embed_token_authorized(self): self.login(username="admin")