mirror of
https://github.com/httprunner/httprunner.git
synced 2026-09-05 23:51:25 +08:00
fix doc string
This commit is contained in:
+6
-6
@@ -129,8 +129,8 @@ class Runner(object):
|
|||||||
}
|
}
|
||||||
@return (list) test results of testcases
|
@return (list) test results of testcases
|
||||||
[
|
[
|
||||||
(success, diff_content), # testcase1
|
True, # testcase11
|
||||||
(success, diff_content) # testcase2
|
True # testcase12
|
||||||
]
|
]
|
||||||
"""
|
"""
|
||||||
results = []
|
results = []
|
||||||
@@ -154,12 +154,12 @@ class Runner(object):
|
|||||||
@return (list) test results of testsets
|
@return (list) test results of testsets
|
||||||
[
|
[
|
||||||
[ # testset1
|
[ # testset1
|
||||||
(success, diff_content), # testcase11
|
True, # testcase11
|
||||||
(success, diff_content) # testcase12
|
True # testcase12
|
||||||
],
|
],
|
||||||
[ # testset2
|
[ # testset2
|
||||||
(success, diff_content), # testcase21
|
True, # testcase21
|
||||||
(success, diff_content) # testcase22
|
True # testcase22
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user