From 8da1ca041675d0a27be99ce6fcb1cfd610f523b8 Mon Sep 17 00:00:00 2001 From: Alex Duan <417921451@qq.com> Date: Sun, 1 Dec 2024 12:30:43 +0800 Subject: [PATCH] fix: remove debug output info --- tests/army/whole/checkErrorCode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/army/whole/checkErrorCode.py b/tests/army/whole/checkErrorCode.py index cb9fc5588c..376ee4cda8 100644 --- a/tests/army/whole/checkErrorCode.py +++ b/tests/army/whole/checkErrorCode.py @@ -61,7 +61,7 @@ class TDTestCase(TBase): # ignore error def ignoreCode(self, code): - ignoreCodes = {"0x00008, 0x000009"} + ignoreCodes = {"0x0000000"} if code in ignoreCodes: return True else: @@ -81,7 +81,7 @@ class TDTestCase(TBase): # ignore if self.ignoreCode(code): tdLog.info(f"ignore error {code}\n") - print(code) + #print(code) # valid if code == "0x8000000B": start = True