From 40e08f81bd880afc5197ab145bce30d28e88c88f Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Tue, 11 Dec 2012 23:35:51 -0500 Subject: [PATCH] Missed a var declaration in aad235b3251494afe71fd5bb6031e11965af9bdb. --- test/unit/attributes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/attributes.js b/test/unit/attributes.js index 3144dc626..4d1a72b4f 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -387,7 +387,7 @@ test( "attr(String, Object)", function() { } var check = document.createElement("input"); - thrown = true; + var thrown = true; try { jQuery( check ).attr( "type", "checkbox" ); } catch( e ) { -- 2.39.5