refactor: change param name

This commit is contained in:
debugtalk
2020-07-06 21:30:11 +08:00
parent 85700685bc
commit 2f0575b07d
4 changed files with 14 additions and 14 deletions

View File

@@ -3,7 +3,7 @@ __description__ = "One-stop solution for HTTP(S) testing."
# import firstly for monkey patch if needed
from httprunner.ext.locust import main_locusts
from httprunner.parser import parse_parameters
from httprunner.parser import parse_parameters as Parameters
from httprunner.runner import HttpRunner
from httprunner.testcase import Config, Step, RunRequest, RunTestCase
@@ -15,5 +15,5 @@ __all__ = [
"Step",
"RunRequest",
"RunTestCase",
"parse_parameters",
"Parameters",
]