fix: typo

This commit is contained in:
debugtalk
2022-04-08 09:51:13 +08:00
parent 4152a6ae80
commit 51a491f179
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
@Date : 2022/4/7
@File : request_with_retry.py
@Author : duanchao.bill
@Desc :
@Desc :
"""

View File

@@ -80,7 +80,7 @@ class RunTestCase(object):
self.__step.variables.update(variables)
return self
def with_retry(self, retry_times, retry_interval) -> "RunRequest":
def with_retry(self, retry_times, retry_interval) -> "RunTestCase":
self.__step.retry_times = retry_times
self.__step.retry_interval = retry_interval
return self