From 9706881a952193a1775514b092236b185689e8d5 Mon Sep 17 00:00:00 2001 From: Sarthak5598 Date: Thu, 4 Jul 2024 15:41:33 +0530 Subject: [PATCH] added env --- tests/test_welcome_plugin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_welcome_plugin.py b/tests/test_welcome_plugin.py index 32178b3..82f16e7 100644 --- a/tests/test_welcome_plugin.py +++ b/tests/test_welcome_plugin.py @@ -12,7 +12,8 @@ def setenvvar(monkeypatch): with mock.patch.dict(os.environ, clear=True): envvars = { - "API_AUDIENCE": "https://mock.com", + "SIGNING_SECRET": "xapp-token", + "SLACK_BOT_TOKEN": "xoxb-token", } for k, v in envvars.items(): monkeypatch.setenv(k, v)