From ae7ef24196cf16abb0e14cd2207572c01835f752 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 28 May 2014 15:19:56 -0400 Subject: [PATCH] Minor source nit in test/test.js. --- test/test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test.js b/test/test.js index d8d83bc5e..925fb044b 100644 --- a/test/test.js +++ b/test/test.js @@ -113,9 +113,9 @@ }()); /** Load and install QUnit Extras */ - var qa = load('../vendor/qunit-extras/qunit-extras.js'); - if (qa) { - qa.runInContext(root); + var qe = load('../vendor/qunit-extras/qunit-extras.js'); + if (qe) { + qe.runInContext(root); } /*--------------------------------------------------------------------------*/