From 0abc701f9f639af7ee2123a2c3b002f6ec5cb526 Mon Sep 17 00:00:00 2001 From: Pavan Kumar Sunkara Date: Fri, 6 Jun 2025 11:11:15 +0530 Subject: [PATCH] Fix tests --- tests/test_automa.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_automa.py b/tests/test_automa.py index 5cd9865..a41cb47 100644 --- a/tests/test_automa.py +++ b/tests/test_automa.py @@ -2,12 +2,13 @@ from unittest.mock import patch import pytest +from automa.bot import CodeFolder from automa.bot.webhook import generate_webhook_signature from app.env import env fixtures = Path(__file__).parent / "fixtures" -fixture_code = fixtures / "code" +fixture_code = CodeFolder(fixtures / "code") def call_with_fixture(client, filename):