🐛 fix(test_chains_template.py): set "show" property of "verbose" to False in conversation_chain, llm_chain, and llm_math_chain tests to fix failing tests due to incorrect value

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-07-11 18:03:12 -03:00
commit c159f71b83

View file

@ -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,