Skip to content
Permalink
Browse files

test(input): fix typo (`step="{{step}}""` --> `step="{{step}}"`)

  • Loading branch information
gkalpak committed Oct 19, 2016
1 parent 081d06f commit 7dacbcc991657dacbec7b0cad4df318a8075ec04
Showing with 1 addition and 1 deletion.
  1. +1 −1 test/ng/directive/inputSpec.js
@@ -3607,7 +3607,7 @@ describe('input', function() {
$rootScope.step = 10;
$rootScope.value = 10;
var inputElm = helper.compileInput(
'<input type="range" ng-model="value" min="{{min}}" step="{{step}}"" />');
'<input type="range" ng-model="value" min="{{min}}" step="{{step}}" />');
var ngModel = inputElm.controller('ngModel');

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

0 comments on commit 7dacbcc

Please sign in to comment.
You can’t perform that action at this time.