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.
fix/verification-admin-route-recovery
teknium1 2026-07-05 15:08:05 -07:00 committed by Teknium
parent 4f4cbff8bd
commit deae37e33b
1 changed files with 1 additions and 0 deletions

View File

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