Rename remaining qsos variable names to contacts in tests

This commit is contained in:
Graham McIntire 2026-04-02 15:56:31 -05:00
parent 7d13bf20ea
commit bdc4d08111
No known key found for this signature in database
GPG key ID: F4ABF488E6029E59

View file

@ -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