From a90e36f9da22e055e0ff56e170bde6d0e551794f Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sat, 2 Oct 2021 10:21:15 +0300 Subject: [PATCH] benchmark.js: update Will Peavy and HTMLCompressor POST URLs --- benchmark.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark.js b/benchmark.js index 20216add..7ab2d589 100644 --- a/benchmark.js +++ b/benchmark.js @@ -297,7 +297,7 @@ run(fileNames.map(function(fileName) { function testWillPeavy(done) { readText(filePath, function(data) { - var options = url.parse('https://www.willpeavy.com/minifier/'); + var options = url.parse('https://www.willpeavy.com/tools/minifier/'); options.method = 'POST'; options.headers = { 'Content-Type': 'application/x-www-form-urlencoded' @@ -335,7 +335,7 @@ run(fileNames.map(function(fileName) { function testHTMLCompressor(done) { readText(filePath, function(data) { - var options = url.parse('https://htmlcompressor.com/compress_ajax_v2.php'); + var options = url.parse('https://htmlcompressor.com/compress'); options.method = 'POST'; options.headers = { 'Accept-Encoding': 'gzip',