diff --git a/test/test.js b/test/test.js index b97b95b..a160ed2 100644 --- a/test/test.js +++ b/test/test.js @@ -5226,13 +5226,7 @@ const y = x()` test('mutability quicksort', () => { const code = ` - const loop = new Function('action', \` - while(true) { - if(action()) { - return - } - } - \`) + const loop = new Function('action', 'while(true) { if(action()) { return } }') function partition(arr, begin, end) { const pivot = arr[begin]