chore: fix warnings in test

This commit is contained in:
Zach Daniel 2024-02-24 09:38:41 -05:00
parent 9c9e94c26d
commit b745d5ca9b
2 changed files with 3 additions and 1 deletions

View file

@ -1,6 +1,7 @@
defmodule AshOban.Test.Api do
@moduledoc false
use Ash.Api
use Ash.Api,
validate_config_inclusion?: false
resources do
resource AshOban.Test.Triggered

View file

@ -1,6 +1,7 @@
defmodule AshOban.Test.Triggered do
@moduledoc false
use Ash.Resource,
validate_api_inclusion?: false,
data_layer: Ash.DataLayer.Ets,
authorizers: [Ash.Policy.Authorizer],
extensions: [AshOban]