From dd29e74150253b8cb420f3b4f2aa02f7b8473c85 Mon Sep 17 00:00:00 2001 From: Taimoor Zaeem Date: Thu, 13 Mar 2025 06:15:23 +0500 Subject: [PATCH] test: fix config value in io test --- test/io/test_io.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/io/test_io.py b/test/io/test_io.py index ddcc9b4f3..bb6ea9e58 100644 --- a/test/io/test_io.py +++ b/test/io/test_io.py @@ -1459,11 +1459,11 @@ def test_jwt_cache_server_timing(defaultenv): def test_jwt_cache_without_server_timing(defaultenv): - "JWT cache does not break requests without server-timing enabled" + "JWT cache does not break requests with server-timing disabled" env = { **defaultenv, - "PGRST_SERVER_TIMING_ENABLED": "true", + "PGRST_SERVER_TIMING_ENABLED": "false", "PGRST_JWT_CACHE_MAX_LIFETIME": "86400", "PGRST_JWT_SECRET": SECRET, "PGRST_DB_CONFIG": "false",