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 cd170ea commit 98e0736Copy full SHA for 98e0736
test/lightning_web/live/workflow_live/edit_test.exs
@@ -2374,8 +2374,8 @@ defmodule LightningWeb.WorkflowLive.EditTest do
2374
2375
assert_reply(view, %{workflow_params: %{"jobs" => reply_jobs}})
2376
2377
- assert Enum.find(reply_jobs, & &1["id"] == job1.id and &1["has_ai_chat"])
2378
- 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"]))
2379
end
2380
2381
0 commit comments