Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(523)

Unified Diff: third_party/pkg/angular/test/directive/ng_non_bindable_spec.dart

Issue 180843004: Revert revision 33053 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/pkg/angular/test/directive/ng_non_bindable_spec.dart
===================================================================
--- third_party/pkg/angular/test/directive/ng_non_bindable_spec.dart (revision 33054)
+++ third_party/pkg/angular/test/directive/ng_non_bindable_spec.dart (working copy)
@@ -9,7 +9,7 @@
beforeEach(inject((TestBed tb) => _ = tb));
it('should set ignore all other markup/directives on the descendent nodes',
- inject((Scope scope, Injector injector, Compiler compiler, DirectiveMap directives) {
+ inject((Scope scope, Injector injector, Compiler compiler) {
var element = $('<div>' +
' <span id="s1">{{a}}</span>' +
' <span id="s2" ng-bind="b"></span>' +
@@ -19,10 +19,10 @@
' <span id="s3">{{a}}</span>' +
' <span id="s4" ng-bind="b"></span>' +
'</div>');
- compiler(element, directives)(injector, element);
- scope.context['a'] = "one";
- scope.context['b'] = "two";
- scope.apply();
+ compiler(element)(injector, element);
+ scope.a = "one";
+ scope.b = "two";
+ scope.$digest();
// 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');

Powered by Google App Engine
This is Rietveld 408576698