forked from extern/bruno
Fix 'between' assertion
This commit is contained in:
parent
856236c918
commit
024f61a95e
@ -268,7 +268,7 @@ class AssertRuntime {
|
||||
expect(lhs).to.endWith(rhs);
|
||||
break;
|
||||
case 'between':
|
||||
const [min, max] = value.split(',');
|
||||
const [min, max] = rhs;
|
||||
expect(lhs).to.be.within(min, max);
|
||||
break;
|
||||
case 'isEmpty':
|
||||
|
Loading…
Reference in New Issue
Block a user