Skip to content

Commit 914089e

Browse files
gkalpakellimist
authored andcommitted
test(input): fix typo (step="{{step}}"" --> step="{{step}}")
1 parent 6396264 commit 914089e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/ng/directive/inputSpec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3607,7 +3607,7 @@ describe('input', function() {
36073607
$rootScope.step = 10;
36083608
$rootScope.value = 10;
36093609
var inputElm = helper.compileInput(
3610-
'<input type="range" ng-model="value" min="{{min}}" step="{{step}}"" />');
3610+
'<input type="range" ng-model="value" min="{{min}}" step="{{step}}" />');
36113611
var ngModel = inputElm.controller('ngModel');
36123612

36133613
expect(inputElm.val()).toBe('10');

0 commit comments

Comments
 (0)