Commit 8eab334732739e6854701bef05352b5bfd7f72a4
1 parent
0b3f71c6
view
Showing
1 changed file
with
1 additions
and
2 deletions
testcase/FeedbackCustomerController/test_fc_view.py
... | ... | @@ -25,7 +25,7 @@ class test_fc_view(unittest.TestCase): |
25 | 25 | print("查询出返还人id", self.code) |
26 | 26 | |
27 | 27 | # @unittest.case_mark(my.mark()) |
28 | - def test_doAudit_01(self): | |
28 | + def test_fc_view_01(self): | |
29 | 29 | "查看返还人" |
30 | 30 | # 请求url中的需要替换为新增返还人的id |
31 | 31 | url = vi.url.replace("40", str(self.code)) |
... | ... | @@ -37,7 +37,6 @@ class test_fc_view(unittest.TestCase): |
37 | 37 | # 断言响应数据中是否存在期望字符串 |
38 | 38 | self.assertTrue('关联交费卡号' in str(re.text)) |
39 | 39 | |
40 | - return re | |
41 | 40 | |
42 | 41 | @classmethod |
43 | 42 | def tearDownClass(cls): | ... | ... |