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

Unified Diff: dart/tests/lib/math/point_test.dart

Issue 66253002: Version 0.8.10.9 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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 | « dart/tests/language/language_analyzer.status ('k') | dart/tools/VERSION » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/lib/math/point_test.dart
===================================================================
--- dart/tests/lib/math/point_test.dart (revision 30098)
+++ dart/tests/lib/math/point_test.dart (working copy)
@@ -9,14 +9,14 @@
main() {
test('constructor', () {
- var point = new Point();
+ var point = new Point(0, 0);
expect(point.x, 0);
expect(point.y, 0);
expect('$point', 'Point(0, 0)');
});
test('constructor X', () {
- var point = new Point<int>(10);
+ var point = new Point<int>(10, 0);
expect(point.x, 10);
expect(point.y, 0);
expect('$point', 'Point(10, 0)');
« no previous file with comments | « dart/tests/language/language_analyzer.status ('k') | dart/tools/VERSION » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698