我在邮递员中有一个测试用例,如下所示:
correlation= Answer0.corr()
corr_self=(correlation.where(numpy.triu(numpy.ones(correlation.shape),k=3).astype(numpy.bool)).stack()
.sort_values(ascending=False))
frame_5=corr_self.to_frame()
但由于BOBBY为pm.test("Last Name contains Bob", () => {
const responseJson = pm.response.json();
pm.response.to.have.status(200);
pm.response.json().result.length >= 1;
pm.expect(responseJson.result[0].last_name).to.include.a("Bob");
});
我认为,通过在断言中添加last_name
,将变得不区分大小写。
那我做错了吗?
答案 0 :(得分:1)
我的解决方案不是将match
与Regex一起使用
pm.test("Last Name contains Bob", () => {
const responseJson = pm.response.json();
pm.response.to.have.status(200);
pm.response.json().result.length >= 1;
pm.expect(responseJson.result[0].last_name).to.match(\Bob\gmi);
});