From ddb7e68836c8f9b687ed15a3455553fdaaa5d131 Mon Sep 17 00:00:00 2001 From: David Baldwynn Date: Sat, 22 Apr 2017 19:32:06 -0700 Subject: [PATCH] Removed unused variables in on-finish-render.client.directive.test.js --- .../directives/on-finish-render.client.directive.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/modules/forms/tests/unit/directives/on-finish-render.client.directive.test.js b/public/modules/forms/tests/unit/directives/on-finish-render.client.directive.test.js index 274f4acb..b46d19ec 100644 --- a/public/modules/forms/tests/unit/directives/on-finish-render.client.directive.test.js +++ b/public/modules/forms/tests/unit/directives/on-finish-render.client.directive.test.js @@ -21,7 +21,7 @@ scope.myfields = FormFields.types; - var e = $compile('
{{item.name}}
')(scope); + $compile('
{{item.name}}
')(scope); scope.$digest(); //run code to test @@ -34,7 +34,7 @@ // console.log(FormFields.types); scope.myfields = FormFields.types; - var e = $compile('
{{item.name}}
')(scope); + $compile('
{{item.name}}
')(scope); scope.$digest(); //run code to test @@ -43,4 +43,4 @@ })); }); -}()); \ No newline at end of file +}());