From 3839d00a958ab2aba300ea487a98a447e9f98375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B4=9B=E6=B0=B4=E5=B1=85=E5=AE=A4?= Date: Sat, 11 Feb 2023 16:29:11 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Update=20Unit=20Test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: xtaodada --- core/plugin.py | 1 - modules/apihelper/client/base/httpxrequest.py | 1 - tests/test_wiki.py | 4 ++-- utils/log/_traceback.py | 2 -- 4 files changed, 2 insertions(+), 6 deletions(-) diff --git a/core/plugin.py b/core/plugin.py index 6b98ff1b..fc906191 100644 --- a/core/plugin.py +++ b/core/plugin.py @@ -62,7 +62,6 @@ class _Plugin: return result def _new_chat_members_handler_funcs(self) -> List[Tuple[int, Callable]]: - result = [] for attr in dir(self): # noinspection PyUnboundLocalVariable diff --git a/modules/apihelper/client/base/httpxrequest.py b/modules/apihelper/client/base/httpxrequest.py index a0b1728d..7557f880 100644 --- a/modules/apihelper/client/base/httpxrequest.py +++ b/modules/apihelper/client/base/httpxrequest.py @@ -22,7 +22,6 @@ class HTTPXRequest(AbstractAsyncContextManager): async def __aexit__( self, exc_type: Optional[Type[BaseException]], exc_val: Optional[BaseException], exc_tb: Optional[TracebackType] ) -> None: - await self.initialize() async def initialize(self): diff --git a/tests/test_wiki.py b/tests/test_wiki.py index c2aed798..fba1fd94 100644 --- a/tests/test_wiki.py +++ b/tests/test_wiki.py @@ -112,13 +112,13 @@ class TestMaterial: async def test_get_by_name(): material = await Material.get_by_name("地脉的新芽") assert material.id == "i_73" - assert material.type == "角色培养素材" + assert material.type == "角色与武器培养素材" assert "60级以上深渊法师掉落" in material.source assert "勃发" in material.description material = await Material.get_by_name("「黄金」的教导") assert material.id == "i_431" - assert material.type == "天赋培养素材" + assert material.type == "角色天赋素材" assert 2 in material.weekdays assert "土的象" in material.description diff --git a/utils/log/_traceback.py b/utils/log/_traceback.py index 97333ed8..0d2ae2b0 100644 --- a/utils/log/_traceback.py +++ b/utils/log/_traceback.py @@ -114,7 +114,6 @@ class Traceback(BaseTraceback): locals_max_depth: Optional[int] def __init__(self, *args, locals_max_depth: Optional[int] = None, **kwargs): - kwargs.update({"show_locals": True}) super(Traceback, self).__init__(*args, **kwargs) self.locals_max_depth = locals_max_depth @@ -291,7 +290,6 @@ class Traceback(BaseTraceback): excluded = False for frame_index, frame in enumerate(stack.frames): - if exclude_frames and frame_index in exclude_frames: excluded = True continue