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

Unified Diff: client/tests/client/dom/MessageEventTest.dart

Issue 10080005: Support Expectation.identical. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressing Bob's comments Created 8 years, 8 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 | « no previous file | lib/unittest/expectation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/client/dom/MessageEventTest.dart
diff --git a/client/tests/client/dom/MessageEventTest.dart b/client/tests/client/dom/MessageEventTest.dart
index 4a6aed0cff873b9f09330107d24585008b05417a..651ce5354e35b935003af842d91cc29734d82833 100644
--- a/client/tests/client/dom/MessageEventTest.dart
+++ b/client/tests/client/dom/MessageEventTest.dart
@@ -15,8 +15,7 @@ main() {
expect(event.data).equals('data');
expect(event.origin).equals('origin');
expect(event.lastEventId).equals('lastEventId');
- // TODO(antonm): add identical to Expectation.
- Expect.identical(window, event.source);
+ expect(event.source).same(window);
// TODO(antonm): accessing ports is not supported yet.
});
}
« no previous file with comments | « no previous file | lib/unittest/expectation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698