From 85d8cfcb94b34b69bf226992d09ab377dd8f3ce2 Mon Sep 17 00:00:00 2001 From: binbin <83755740+binbinlv@users.noreply.github.com> Date: Thu, 23 Dec 2021 14:21:30 +0800 Subject: [PATCH] [skip e2e] Refine code comments (#14024) Signed-off-by: Binbin Lv --- tests/python_client/base/client_base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/python_client/base/client_base.py b/tests/python_client/base/client_base.py index 13f862c9c9..f2291b0348 100644 --- a/tests/python_client/base/client_base.py +++ b/tests/python_client/base/client_base.py @@ -95,11 +95,11 @@ class Base: class TestcaseBase(Base): """ Additional methods; - Public methods that can be used to add cases. + Public methods that can be used for test cases. """ def _connect(self): - """ Add an connection and create the connect """ + """ Add a connection and create the connect """ res, is_succ = self.connection_wrap.connect(alias=DefaultConfig.DEFAULT_USING, host=param_info.param_host, port=param_info.param_port) return res