fix(tests): add missing json import in msgraph webhook test fixture

The salvaged #25296 fixture's _FakeRequest.read() calls json.dumps but the
test module never imported json — the NameError was swallowed by the
handler's generic except → 400, failing 10 payload tests.
This commit is contained in:
teknium1 2026-07-05 15:08:05 -07:00 committed by Teknium
parent 4f4cbff8bd
commit deae37e33b

View file

@ -1,6 +1,7 @@
"""Tests for the Microsoft Graph webhook adapter."""
import asyncio
import json
import pytest