Remove "it" from the test descriptions

This commit is contained in:
Claudio Ortolina
2026-03-27 08:38:41 +00:00
parent b9e3de1db6
commit 1301f888f3
16 changed files with 43 additions and 43 deletions
+2 -2
View File
@@ -23,11 +23,11 @@ defmodule MusicLibrary.WishlistTest do
assert [%{title: "Brave"}, %{title: "Brave"}] = Wishlist.search_records("brave")
end
test "it respects limit" do
test "respects limit" do
assert [%{title: "Brave"}] = Wishlist.search_records("brave", limit: 1)
end
test "it respects offset" do
test "respects offset" do
[first_match] = Wishlist.search_records("brave", limit: 1)
[second_match] = Wishlist.search_records("brave", limit: 1, offset: 1)
assert first_match !== second_match