From e5bef513fb8dfe3d89394f586f0fb66bb2a1f67c Mon Sep 17 00:00:00 2001 From: Eduardo Lauer Date: Wed, 19 Jun 2024 12:03:21 -0300 Subject: [PATCH] add hide_filters in mocked_specs --- tests/discord_sender_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/discord_sender_test.py b/tests/discord_sender_test.py index 4e38236..d1d9d65 100644 --- a/tests/discord_sender_test.py +++ b/tests/discord_sender_test.py @@ -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(