test output cleanup, no code change

This commit is contained in:
faried nawaz 2023-09-24 21:11:25 +05:00
parent 1fd57f8d9a
commit 0c6031ff4e
No known key found for this signature in database
GPG key ID: EDCFAF5BA3A2F622

View file

@ -33,15 +33,15 @@ defmodule Pleroma.Activity.PrunerTest do
refute Activity.get_by_id(old_activity.id)
end
test "it prunes old delete objects" do
test "it prunes old Delete objects" do
test_prune(:delete_activity, "Delete", &Pruner.prune_deletes/0)
end
test "it prunes old undo objects" do
test "it prunes old Undo objects" do
test_prune(:undo_activity, "Undo", &Pruner.prune_undos/0)
end
test "it prunes old remove objects" do
test "it prunes old Remove objects" do
test_prune(:remove_activity, "Remove", &Pruner.prune_removes/0)
end
end