(e, f)
| 858 | items = ['Four', 'Three', 'One'] |
| 859 | |
| 860 | def myFunc(e, f): |
| 861 | return len(e) - len(f) |
| 862 | pm.eval("(arr, compareFun) => {arr.sort(compareFun)}")(items, myFunc) |
| 863 | assert items == ['One', 'Four', 'Three'] |
| 864 |
nothing calls this directly
no outgoing calls
no test coverage detected