mirror of
https://github.com/httprunner/httprunner.git
synced 2026-07-10 23:12:41 +08:00
bugfix: make compatible with testcase name is empty
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
__title__ = 'HttpRunner'
|
__title__ = 'HttpRunner'
|
||||||
__description__ = 'One-stop solution for HTTP(S) testing.'
|
__description__ = 'One-stop solution for HTTP(S) testing.'
|
||||||
__url__ = 'https://github.com/HttpRunner/HttpRunner'
|
__url__ = 'https://github.com/HttpRunner/HttpRunner'
|
||||||
__version__ = '2.0.0'
|
__version__ = '2.0.1'
|
||||||
__author__ = 'debugtalk'
|
__author__ = 'debugtalk'
|
||||||
__author_email__ = 'mail@debugtalk.com'
|
__author_email__ = 'mail@debugtalk.com'
|
||||||
__license__ = 'Apache-2.0'
|
__license__ = 'Apache-2.0'
|
||||||
|
|||||||
@@ -733,8 +733,12 @@ def _extend_with_testcase(test_dict, testcase_def_dict):
|
|||||||
test_verify = test_dict.pop("verify", True)
|
test_verify = test_dict.pop("verify", True)
|
||||||
testcase_def_dict["config"].setdefault("verify", test_verify)
|
testcase_def_dict["config"].setdefault("verify", test_verify)
|
||||||
|
|
||||||
|
# override name
|
||||||
|
test_name = test_dict.pop("name") or testcase_def_dict["config"].pop("name") or "Undefined name"
|
||||||
|
|
||||||
# override testcase config name, output, etc.
|
# override testcase config name, output, etc.
|
||||||
testcase_def_dict["config"].update(test_dict)
|
testcase_def_dict["config"].update(test_dict)
|
||||||
|
testcase_def_dict["config"]["name"] = test_name
|
||||||
|
|
||||||
test_dict.clear()
|
test_dict.clear()
|
||||||
test_dict.update(testcase_def_dict)
|
test_dict.update(testcase_def_dict)
|
||||||
|
|||||||
Reference in New Issue
Block a user