From b8c2b77c9af802f83c7f6ff2955eeffd69f4fec0 Mon Sep 17 00:00:00 2001 From: awesomerobot Date: Fri, 20 Dec 2024 17:41:27 -0500 Subject: [PATCH] unstuck github? --- spec/system/llms/ai_llm_spec.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/spec/system/llms/ai_llm_spec.rb b/spec/system/llms/ai_llm_spec.rb index 350ca7d40..76ee8cae5 100644 --- a/spec/system/llms/ai_llm_spec.rb +++ b/spec/system/llms/ai_llm_spec.rb @@ -87,12 +87,11 @@ it "seeded LLM has a description" do visit "/admin/plugins/discourse-ai/ai-llms" - description = - I18n.t("js.discourse_ai.llms.preseeded_model_description", model: llm_model.name) + desc = I18n.t("js.discourse_ai.llms.preseeded_model_description", model: llm_model.name) expect(page).to have_css( "[data-llm-id='#{llm_model.name}'] .ai-llm-list__description", - text: description, + text: desc, ) end