Skip to content

Commit 0a9c468

Browse files
style(ngStyle): remove unused $log param
1 parent 50bd705 commit 0a9c468

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/ng/directive/ngStyleSpec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe('ngStyle', function() {
2323
}));
2424

2525

26-
it('should support lazy one-time binding for object literals', inject(function($rootScope, $compile, $log) {
26+
it('should support lazy one-time binding for object literals', inject(function($rootScope, $compile) {
2727
element = $compile('<div ng-style="::{height: heightStr}"></div>')($rootScope);
2828
$rootScope.$digest();
2929
expect(parseInt(element.css('height') + 0)).toEqual(0); // height could be '' or '0px'

0 commit comments

Comments
 (0)