| Index: third_party/pkg/angular/test/directive/ng_non_bindable_spec.dart
|
| diff --git a/third_party/pkg/angular/test/directive/ng_non_bindable_spec.dart b/third_party/pkg/angular/test/directive/ng_non_bindable_spec.dart
|
| index f22e414dbb2a6172156026a465cc668d0c9a39d3..867716c9d78c4b3d92bb566cec0e32d5e6d3e5a4 100644
|
| --- a/third_party/pkg/angular/test/directive/ng_non_bindable_spec.dart
|
| +++ b/third_party/pkg/angular/test/directive/ng_non_bindable_spec.dart
|
| @@ -9,7 +9,7 @@ main() {
|
| beforeEach(inject((TestBed tb) => _ = tb));
|
|
|
| it('should set ignore all other markup/directives on the descendent nodes',
|
| - inject((Scope scope, Injector injector, Compiler compiler) {
|
| + inject((Scope scope, Injector injector, Compiler compiler, DirectiveMap directives) {
|
| var element = $('<div>' +
|
| ' <span id="s1">{{a}}</span>' +
|
| ' <span id="s2" ng-bind="b"></span>' +
|
| @@ -19,10 +19,10 @@ main() {
|
| ' <span id="s3">{{a}}</span>' +
|
| ' <span id="s4" ng-bind="b"></span>' +
|
| '</div>');
|
| - compiler(element)(injector, element);
|
| - scope.a = "one";
|
| - scope.b = "two";
|
| - scope.$digest();
|
| + compiler(element, directives)(injector, element);
|
| + scope.context['a'] = "one";
|
| + scope.context['b'] = "two";
|
| + scope.apply();
|
| // Bindings not contained by ng-non-bindable should resolve.
|
| expect(element.find("#s1").text().trim()).toEqual('one');
|
| expect(element.find("#s2").text().trim()).toEqual('two');
|
|
|