fix: add logging for content list in test_e2e.py

This commit is contained in:
myhloli
2025-12-12 17:37:55 +08:00
parent b5d5ff641c
commit b7ef8f7e05

View File

@@ -241,6 +241,7 @@ def assert_content(content_path, parse_method="txt"):
content_list = []
with open(content_path, "r", encoding="utf-8") as file:
content_list = json.load(file)
logger.info(content_list)
type_set = set()
for content_dict in content_list:
match content_dict["type"]: