From e60fe0900e0c506c3941717fc0e0e248ec08cdc2 Mon Sep 17 00:00:00 2001 From: Lendemor Date: Wed, 25 Sep 2024 12:04:47 -0700 Subject: [PATCH] fix shared_state --- tests/integration/test_shared_state.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/integration/test_shared_state.py b/tests/integration/test_shared_state.py index 5217947443..6f59c51428 100644 --- a/tests/integration/test_shared_state.py +++ b/tests/integration/test_shared_state.py @@ -11,9 +11,8 @@ def SharedStateApp(): """Test that shared state works as expected.""" - from integration.shared.state import SharedState - import reflex as rx + from tests.integration.shared.state import SharedState class State(SharedState): pass