diff --git a/test/microwaveprop/workers/contact_weather_enqueue_worker_test.exs b/test/microwaveprop/workers/contact_weather_enqueue_worker_test.exs index d3f00bc2..322e88eb 100644 --- a/test/microwaveprop/workers/contact_weather_enqueue_worker_test.exs +++ b/test/microwaveprop/workers/contact_weather_enqueue_worker_test.exs @@ -239,8 +239,8 @@ defmodule Microwaveprop.Workers.ContactWeatherEnqueueWorkerTest do assert :ok = ContactWeatherEnqueueWorker.perform(%Oban.Job{args: %{}}) # QSO without pos1 should not be marked as queued - all_qsos = Repo.all(Contact) - refute Enum.any?(all_qsos, &(&1.weather_status == :queued)) + all_contacts = Repo.all(Contact) + refute Enum.any?(all_contacts, &(&1.weather_status == :queued)) end test "enqueues HRRR jobs and marks QSOs as hrrr_status" do @@ -424,8 +424,8 @@ defmodule Microwaveprop.Workers.ContactWeatherEnqueueWorkerTest do assert :ok = ContactWeatherEnqueueWorker.perform(%Oban.Job{args: %{}}) - all_qsos = Repo.all(Contact) - refute Enum.any?(all_qsos, &(&1.terrain_status == :queued)) + all_contacts = Repo.all(Contact) + refute Enum.any?(all_contacts, &(&1.terrain_status == :queued)) end end