Skip to content

Commit

Permalink
add hide_filters in mocked_specs
Browse files Browse the repository at this point in the history
  • Loading branch information
edulauer committed Jun 19, 2024
1 parent f4f72d1 commit e5bef51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/discord_sender_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

@pytest.fixture
def mocked_specs():
Specs = namedtuple('Specs', 'discord_webhook')
return Specs(WEBHOOK)
Specs = namedtuple('Specs', ['discord_webhook', 'hide_filters'])
return Specs(WEBHOOK, False)

def test_send_discord_data(session_mocker: MockerFixture, mocked_specs):
session_mocker.patch(
Expand Down

0 comments on commit e5bef51

Please sign in to comment.