From bc6f82fdf5d6bfc9f083cc8cfc2194900aaa429e Mon Sep 17 00:00:00 2001 From: Tomas Repel Date: Fri, 26 Jul 2024 15:58:53 +0200 Subject: [PATCH] Rename anonymous rate limiting test Signed-off-by: Tomas Repel --- testsuite/tests/singlecluster/test_rate_limit_anonymous.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuite/tests/singlecluster/test_rate_limit_anonymous.py b/testsuite/tests/singlecluster/test_rate_limit_anonymous.py index f321a8f5..ed1201d8 100644 --- a/testsuite/tests/singlecluster/test_rate_limit_anonymous.py +++ b/testsuite/tests/singlecluster/test_rate_limit_anonymous.py @@ -51,7 +51,7 @@ def test_no_limit_for_auth_user(client, auth): responses.assert_all(status_code=200) -def test_anonymous_identity(client, auth): +def test_limit_for_anonymous_identity(client, auth): """Test that an anonymous requests are correctly limited""" assert client.get("/get", auth=auth).status_code == 200