From f30eac127281e77c751e9e140b3259526f1fc349 Mon Sep 17 00:00:00 2001 From: Alex Duan <417921451@qq.com> Date: Tue, 25 Feb 2025 14:06:19 +0800 Subject: [PATCH] fix: caseBase.taosdump retFail default is TRue --- tests/army/frame/caseBase.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/army/frame/caseBase.py b/tests/army/frame/caseBase.py index cdc0025470..4427ddcea5 100644 --- a/tests/army/frame/caseBase.py +++ b/tests/army/frame/caseBase.py @@ -286,8 +286,8 @@ class TBase: def taos(self, command, show = True, checkRun = False): return frame.etool.runBinFile("taos", command, show, checkRun) - def taosdump(self, command, show = True, checkRun = True): - return frame.etool.runBinFile("taosdump", command, show, checkRun) + def taosdump(self, command, show = True, checkRun = True, retFail = True): + return frame.etool.runBinFile("taosdump", command, show, checkRun, retFail) #