From bdc4d0811110f7feaef3b18f1a447791d7c2b386 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Thu, 2 Apr 2026 15:56:31 -0500 Subject: [PATCH] Rename remaining qsos variable names to contacts in tests --- .../workers/contact_weather_enqueue_worker_test.exs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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