From 488f32e661683a41a1bace35ad6f9ccd40c1fc51 Mon Sep 17 00:00:00 2001 From: David Majda Date: Fri, 22 Jan 2016 14:21:28 +0100 Subject: [PATCH] Fix ESLint errors in benchmark/index.js Fix the following errors: 74:14 error "benchmarks" is not defined no-undef 84:36 error "test" is defined but never used no-unused-vars --- benchmark/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark/index.js b/benchmark/index.js index e2aa861..9d77d95 100644 --- a/benchmark/index.js +++ b/benchmark/index.js @@ -1,5 +1,5 @@ /* eslint-env browser, jquery */ -/* global Runner */ +/* global benchmarks, Runner */ $("#run").click(function() { "use strict"; @@ -81,7 +81,7 @@ $("#run").click(function() { }).responseText; }, - testStart: function(benchmark, test) { + testStart: function() { /* Nothing to do. */ },