test: resolve pytest warning when running io tests

When running `postgrest-test-io`, pytest raises a `InsecureKeyLengthWarning`
for a test. To clear that warning, this commit increases the key length to
more than 32 characters.

Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com>
This commit is contained in:
Taimoor Zaeem
2026-07-17 17:42:51 +00:00
committed by Wolfgang Walther
parent f81dd29cd1
commit 8faf9c0519
+2 -1
View File
@@ -1035,7 +1035,8 @@ def test_no_pool_connection_required_on_bad_jwt_claim(defaultenv):
with run(env=env, no_pool_connection_available=True) as postgrest:
# A JWT with an invalid signature shouldn't open a connection
headers = jwtauthheader({"role": "postgrest_test_author"}, "Wrong Secret")
wrong_secret = "This is the most wrong secret of all secrets"
headers = jwtauthheader({"role": "postgrest_test_author"}, wrong_secret)
response = postgrest.session.get("/projects", headers=headers)
assert response.status_code == 401