From c159f71b8304e67c0ff7fb91e43c8c3db4d2a0f0 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 11 Jul 2023 18:03:12 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(test=5Fchains=5Ftemplate.py)?= =?UTF-8?q?:=20set=20"show"=20property=20of=20"verbose"=20to=20False=20in?= =?UTF-8?q?=20conversation=5Fchain,=20llm=5Fchain,=20and=20llm=5Fmath=5Fch?= =?UTF-8?q?ain=20tests=20to=20fix=20failing=20tests=20due=20to=20incorrect?= =?UTF-8?q?=20value?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_chains_template.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_chains_template.py b/tests/test_chains_template.py index 1c28f6536..e183cb0d0 100644 --- a/tests/test_chains_template.py +++ b/tests/test_chains_template.py @@ -42,7 +42,7 @@ def test_conversation_chain(client: TestClient): assert template["verbose"] == { "required": False, "placeholder": "", - "show": True, + "show": False, "multiline": False, "password": False, "name": "verbose", @@ -128,7 +128,7 @@ def test_llm_chain(client: TestClient): assert template["verbose"] == { "required": False, "placeholder": "", - "show": True, + "show": False, "multiline": False, "value": False, "password": False, @@ -228,7 +228,7 @@ def test_llm_math_chain(client: TestClient): assert template["verbose"] == { "required": False, "placeholder": "", - "show": True, + "show": False, "multiline": False, "value": False, "password": False,