aboutsummaryrefslogtreecommitdiffstats
path: root/test/directive/inputSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/directive/inputSpec.js')
-rw-r--r--test/directive/inputSpec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/directive/inputSpec.js b/test/directive/inputSpec.js
index 8d0e44b3..e5f083b3 100644
--- a/test/directive/inputSpec.js
+++ b/test/directive/inputSpec.js
@@ -941,8 +941,8 @@ describe('input', function() {
describe('required', function() {
- it('should allow bindings on required', function() {
- compileInput('<input type="text" ng-model="value" required="{{required}}" />');
+ it('should allow bindings on ng-required', function() {
+ compileInput('<input type="text" ng-model="value" ng-required="required" />');
scope.$apply(function() {
scope.required = false;