From cbb859c58ed0aeeb84b2487653d62d44947841cc Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Mon, 5 Jan 2026 13:06:09 -0800 Subject: [PATCH] Increasing total_timeout to 5ms should be enough time to put the record. This doesn't seem like a negative test, though --- test/new_tests/test_exists.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/new_tests/test_exists.py b/test/new_tests/test_exists.py index c27038c531..81de822a8d 100644 --- a/test/new_tests/test_exists.py +++ b/test/new_tests/test_exists.py @@ -121,7 +121,7 @@ def test_neg_exists_with_only_key_without_connection(self): @pytest.mark.parametrize( "key, record, meta, policy", [ - (("test", "demo", 20), {"name": "John"}, None, {"total_timeout": 2}), + (("test", "demo", 20), {"name": "John"}, None, {"total_timeout": 5}), ], ) def test_neg_exists_with_low_timeout(self, key, record, meta, policy, put_data):