Fix lock reason test

This commit is contained in:
Ajay
2022-01-16 13:19:42 -05:00
parent b39d323a22
commit a31a4d016f

View File

@@ -934,7 +934,7 @@ describe("postSkipSegments", () => {
}))
.then(res => {
assert.strictEqual(res.status, 403);
assert.match(res.data, /Lock reason: /);
assert.match(res.data, /Reason: /);
assert.match(res.data, /Custom Reason/);
done();
})