From 30e64d5ffde3a8f48cda788344afc7cb8e1c3f9a Mon Sep 17 00:00:00 2001 From: xaoyaoo Date: Mon, 25 Dec 2023 16:30:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_read_info.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_read_info.py b/tests/test_read_info.py index 7162e0e..379d52a 100644 --- a/tests/test_read_info.py +++ b/tests/test_read_info.py @@ -5,9 +5,10 @@ # Author: xaoyaoo # Date: 2023/10/21 # ------------------------------------------------------------------------------- - from pywxdump.wx_info import read_info from pywxdump import VERSION_LIST_PATH, VERSION_LIST -result = read_info(VERSION_LIST, is_logging=True) # 读取微信信息 +def test_read_info(): + result = read_info(VERSION_LIST, is_logging=True) # 读取微信信息 + assert result is not None \ No newline at end of file