From 74879f16257a4e7aef0f5cf4531b1423a359d2f2 Mon Sep 17 00:00:00 2001 From: Alex Duan <417921451@qq.com> Date: Tue, 20 Jun 2023 11:35:05 +0800 Subject: [PATCH] test: fix printf format --- tests/system-test/0-others/splitVGroup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system-test/0-others/splitVGroup.py b/tests/system-test/0-others/splitVGroup.py index bf06729860..320acbb196 100644 --- a/tests/system-test/0-others/splitVGroup.py +++ b/tests/system-test/0-others/splitVGroup.py @@ -243,7 +243,7 @@ class TDTestCase: # warning performance diff = (spend1 - spend2)*100/spend1 - tdLog.info("spend1=%.2fs spend2=%.2f diff=%.1f%"%(spend1, spend2, diff)) + tdLog.info("spend1=%.2fs spend2=%.2fs diff=%.1f%%"%(spend1, spend2, diff)) if spend1 > spend2 and diff > 20: tdLog.info("warning: the diff for performance after spliting is over 20%")