From 656718a645632771207b1ecb54a0c49e4b06033a Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Mon, 8 May 2017 06:05:39 +0000 Subject: [PATCH] Fix linting errors in tinymce-obsolete.js. See #40690. git-svn-id: https://develop.svn.wordpress.org/trunk@40585 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/qunit/wp-includes/js/tinymce/tinymce-obsolete.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/qunit/wp-includes/js/tinymce/tinymce-obsolete.js b/tests/qunit/wp-includes/js/tinymce/tinymce-obsolete.js index 9df36fe6f5..9db1f9ac9d 100644 --- a/tests/qunit/wp-includes/js/tinymce/tinymce-obsolete.js +++ b/tests/qunit/wp-includes/js/tinymce/tinymce-obsolete.js @@ -1,5 +1,6 @@ -( function( $, QUnit, tinymce, setTimeout ) { +( function( $, QUnit, tinymce ) { var editor, + text, count = 0; QUnit.module( 'tinymce.obsolete', { @@ -283,4 +284,4 @@ equal( editor.getContent(), testString, text ); }); -} )( window.jQuery, window.QUnit, window.tinymce, window.setTimeout ); +} )( window.jQuery, window.QUnit, window.tinymce );