From 213bb6da959ff84235fc8c9f9ae65c498dc7f803 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira <62335616+lucaseduoli@users.noreply.github.com> Date: Tue, 10 Jun 2025 11:34:35 -0300 Subject: [PATCH] fix: update query input import in test code (#8456) --- src/frontend/tests/core/unit/queryInputComponent.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/tests/core/unit/queryInputComponent.spec.ts b/src/frontend/tests/core/unit/queryInputComponent.spec.ts index fe5a48a02..ace045496 100644 --- a/src/frontend/tests/core/unit/queryInputComponent.spec.ts +++ b/src/frontend/tests/core/unit/queryInputComponent.spec.ts @@ -53,8 +53,8 @@ test( ); newCode = newCode.replace( - `from langflow.inputs import BoolInput, DictInput, DropdownInput, IntInput, SecretStrInput, SliderInput, StrInput`, - `from langflow.inputs import BoolInput, DictInput, DropdownInput, IntInput, SecretStrInput, SliderInput, StrInput, QueryInput`, + `from langflow.inputs.inputs import BoolInput, DictInput, DropdownInput, IntInput, SecretStrInput, SliderInput, StrInput`, + `from langflow.inputs.inputs import BoolInput, DictInput, DropdownInput, IntInput, SecretStrInput, SliderInput, StrInput, QueryInput`, ); // make sure codes are different