From 87bb16140c78d7af364e8a152c850fcce0bc563d Mon Sep 17 00:00:00 2001 From: WrldEngine Date: Fri, 20 Jun 2025 15:04:20 +0500 Subject: [PATCH] hotfix: tests for python 3.8 --- tests/test_bsonjs_response_class.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_bsonjs_response_class.py b/tests/test_bsonjs_response_class.py index a1affaf68..d9d81ed34 100644 --- a/tests/test_bsonjs_response_class.py +++ b/tests/test_bsonjs_response_class.py @@ -24,5 +24,5 @@ def test_bsonjs_serialized_data(): response = client.get("/bsonjs_keys") assert response.content == bsonjs.loads( - json.dumps({"key": "Hello World", 1: 1}) + json.dumps({"key": "Hello World"}) )