From d19d5a23ea22a7db3dd229ea3a977c3ec35deac4 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 15 Jun 2025 20:35:52 -0500 Subject: [PATCH] speed up test a bit --- tests/integration/test_loop_disable_enable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_loop_disable_enable.py b/tests/integration/test_loop_disable_enable.py index 5cdf65807a..84301c25d8 100644 --- a/tests/integration/test_loop_disable_enable.py +++ b/tests/integration/test_loop_disable_enable.py @@ -145,6 +145,6 @@ async def test_loop_disable_enable( # Component was re-enabled - verify it ran more times later_self_disable_counts = [c for c in self_disable_10_counts if c > 10] - assert len(later_self_disable_counts) > 0, ( + assert later_self_disable_counts, ( "self_disable_10 was re-enabled but did not run additional times" )