fix variable reference in BadPacket test

This commit is contained in:
Fly Dev 2025-06-23 14:09:05 +00:00
parent 61aeea31b2
commit 304931d7fe

View file

@ -124,10 +124,10 @@ defmodule Aprs.BadPacketTest do
test "default limit is 100" do
# Test that default limit is applied correctly
_query = BadPacket.recent()
query = BadPacket.recent()
# Check the query structure contains limit
_query = BadPacket.recent()
query = BadPacket.recent()
result = Repo.all(query)
# Verify the query works and the default limit is reasonable
assert is_struct(query, Ecto.Query)