fix unused variable warning in BadPacket test

This commit is contained in:
Fly Dev 2025-06-23 14:10:52 +00:00
parent 888a32ad6b
commit 30af3c39f9

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)