fix doc string

This commit is contained in:
httprunner
2017-08-30 16:59:11 +08:00
parent 371fa8582b
commit d41545dcc6
+6 -6
View File
@@ -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
] ]
] ]
""" """