Assert import count > 0 in options-forwarding test

Refs #176
This commit is contained in:
Claudio Ortolina
2026-04-20 06:27:30 +01:00
parent 8ce5da65e2
commit 0eabe4b3ab
+2 -1
View File
@@ -26,7 +26,8 @@ defmodule LastFm.ImportTest do
Req.Test.json(conn, RecentTracks.get())
end)
assert {:ok, _count} = LastFm.Import.batch(limit: 50, to_uts: 1_730_600_000)
assert {:ok, count} = LastFm.Import.batch(limit: 50, to_uts: 1_730_600_000)
assert count > 0
end
@tag :capture_log