Browse Source

Merge branch 'master' of https://github.com/WrldEngine/fastapi

pull/13760/head
WrldEngine 3 weeks ago
parent
commit
cd96eca1f3
  1. 4
      tests/test_bsonjs_response_class.py

4
tests/test_bsonjs_response_class.py

@ -1,14 +1,14 @@
import json
import pytest
import sys
import pytest
@pytest.mark.skipif(
sys.version_info < (3, 9), reason="requires minimum python3.9 or higher"
)
def test_bsonjs_serialized_data():
import bsonjs
from fastapi import FastAPI
from fastapi.responses import BSONJSResponse
from fastapi.testclient import TestClient

Loading…
Cancel
Save