Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 7dacbcc

Browse files
committed
test(input): fix typo (step="{{step}}"" --> step="{{step}}")
1 parent 081d06f commit 7dacbcc

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)