We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c55041e commit a80ad59Copy full SHA for a80ad59
test/lightning_web/live/workflow_live/edit_test.exs
@@ -2415,8 +2415,8 @@ defmodule LightningWeb.WorkflowLive.EditTest do
2415
2416
assert_reply(view, %{workflow_params: %{"jobs" => reply_jobs}})
2417
2418
- assert Enum.find(reply_jobs, & &1["id"] == job1.id and &1["has_ai_chat"])
2419
- refute Enum.find(reply_jobs, & &1["id"] != job1.id and &1["has_ai_chat"])
+ assert Enum.find(reply_jobs, &(&1["id"] == job1.id and &1["has_ai_chat"]))
+ refute Enum.find(reply_jobs, &(&1["id"] != job1.id and &1["has_ai_chat"]))
2420
end
2421
2422
0 commit comments