Rename remaining qsos variable names to contacts in tests
This commit is contained in:
parent
7d13bf20ea
commit
bdc4d08111
1 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue