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 +}());