fix: remove debug output info
This commit is contained in:
parent
bc093517e9
commit
8da1ca0416
|
@ -61,7 +61,7 @@ class TDTestCase(TBase):
|
||||||
|
|
||||||
# ignore error
|
# ignore error
|
||||||
def ignoreCode(self, code):
|
def ignoreCode(self, code):
|
||||||
ignoreCodes = {"0x00008, 0x000009"}
|
ignoreCodes = {"0x0000000"}
|
||||||
if code in ignoreCodes:
|
if code in ignoreCodes:
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
|
@ -81,7 +81,7 @@ class TDTestCase(TBase):
|
||||||
# ignore
|
# ignore
|
||||||
if self.ignoreCode(code):
|
if self.ignoreCode(code):
|
||||||
tdLog.info(f"ignore error {code}\n")
|
tdLog.info(f"ignore error {code}\n")
|
||||||
print(code)
|
#print(code)
|
||||||
# valid
|
# valid
|
||||||
if code == "0x8000000B":
|
if code == "0x8000000B":
|
||||||
start = True
|
start = True
|
||||||
|
|
Loading…
Reference in New Issue