Skip to content

Commit

Permalink
Unnecessary var keyword in test template
Browse files Browse the repository at this point in the history
  • Loading branch information
ProLoser committed Sep 12, 2012
1 parent fe66f18 commit 8d9aca8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/test/templateSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('uiTemplate', function () {
describe('directive', function () {
var element;
it('should create an element if using element-style', function () {
var element = $compile('<ui-directive-tmpl ng-model="a"></ui-directive-tmpl>')($rootScope);
element = $compile('<ui-directive-tmpl ng-model="a"></ui-directive-tmpl>')($rootScope);
expect(element).toBeDefined();
});
});
Expand Down

0 comments on commit 8d9aca8

Please sign in to comment.