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

Unified Diff: pkg/observe/test/path_observer_test.dart

Issue 355133002: switch Node.bind to interop (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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
« no previous file with comments | « pkg/observe/pubspec.yaml ('k') | pkg/pkgbuild.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/observe/test/path_observer_test.dart
diff --git a/pkg/observe/test/path_observer_test.dart b/pkg/observe/test/path_observer_test.dart
index 25ff63e03c9d0800d26648d702d4a08d1e00ae5a..674f8b27f0c470b51be97bfcbb1087758f131201 100644
--- a/pkg/observe/test/path_observer_test.dart
+++ b/pkg/observe/test/path_observer_test.dart
@@ -327,7 +327,7 @@ observePathTests() {
expect(model._foo, 'hi');
expect(observer.value, 'hi');
- expect(model.log, [#foo, const Symbol('foo='), #foo, #foo]);
+ expect(model.log, [#foo, const Symbol('foo='), #foo]);
// These shouldn't throw
observer = new PathObserver(model, 'bar');
@@ -345,7 +345,7 @@ observePathTests() {
model.log.clear();
observer.value = 'hi';
- expect(model.log, ['[]= foo hi', '[] foo']);
+ expect(model.log, ['[]= foo hi']);
expect(model._foo, 'hi');
expect(observer.value, 'hi');
@@ -358,7 +358,7 @@ observePathTests() {
model.log.clear();
observer.value = 42;
- expect(model.log, ['[]= bar 42', '[] bar']);
+ expect(model.log, ['[]= bar 42']);
model.log.clear();
});
}
« no previous file with comments | « pkg/observe/pubspec.yaml ('k') | pkg/pkgbuild.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698