From e4df722f296c8bed91b13ef36579d8b4009280df Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Mon, 14 Jul 2025 20:25:16 +0300 Subject: [PATCH] fix python formatting --- .../regress/test_lfc_working_set_approximation.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/test_runner/regress/test_lfc_working_set_approximation.py b/test_runner/regress/test_lfc_working_set_approximation.py index dfb1db8a18..2ee15b60fd 100644 --- a/test_runner/regress/test_lfc_working_set_approximation.py +++ b/test_runner/regress/test_lfc_working_set_approximation.py @@ -85,14 +85,16 @@ WITH (fillfactor='100'); log.debug(f"Raw metrics: {autoscaling_metrics}") m = parse_metrics(autoscaling_metrics) - http_estimate = m.query_one("lfc_approximate_working_set_size_windows", - { - "duration_seconds": "60", - }, + http_estimate = m.query_one( + "lfc_approximate_working_set_size_windows", + { + "duration_seconds": "60", + }, ).value log.info(f"http estimate: {http_estimate}, blocks: {blocks}") assert http_estimate > 0 and http_estimate < 20 + @pytest.mark.skipif(not USE_LFC, reason="LFC is disabled, skipping") def test_sliding_working_set_approximation(neon_simple_env: NeonEnv): env = neon_simple_env