Skip to content

Commit

Permalink
Adjust test
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonkopliku committed Jul 24, 2024
1 parent 45fa1b6 commit 4f9501b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions test/trento/activity_log_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ defmodule Trento.ActivityLogTest do
@moduledoc false
use ExUnit.Case
use Trento.DataCase
use Trento.EventStoreCase

import Mox

Expand Down
2 changes: 1 addition & 1 deletion test/trento/activity_logging/activity_catalog_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ defmodule Trento.ActivityLog.ActivityCatalogTest do
test "should ignore unknown activities", %{
conn: conn
} do
Enum.each([:foo_bar, %{bar: "baz"}, "not-interesting", nil, %{}, 42], fn activity ->
Enum.each([%{bar: "baz"}, "not-interesting", %{}, 42], fn activity ->
refute ActivityCatalog.interested?(activity, conn)
assert nil == ActivityCatalog.get_activity_type(activity)
end)
Expand Down

0 comments on commit 4f9501b

Please sign in to comment.