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

Unified Diff: tests/language/src/BoolTest.dart

Issue 9559007: Update test.dart for detection output of machine formatted errors (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Added diagnostic for @static-clean conflicts Created 8 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: tests/language/src/BoolTest.dart
diff --git a/tests/language/src/BoolTest.dart b/tests/language/src/BoolTest.dart
index c13fbf649ca69d81a8a812375b9ede9fc53f6dd8..631e30d483f87590590e15751e6516a6d20c0971 100644
--- a/tests/language/src/BoolTest.dart
+++ b/tests/language/src/BoolTest.dart
@@ -3,10 +3,11 @@
// BSD-style license that can be found in the LICENSE file.
// Dart test program for testing basic boolean properties.
+// @static-clean
class BoolTest {
static void testEquality() {
- Expect.equals(true, true);
+ Expect.equals(true, true);
Bill Hesse 2012/03/02 08:55:18 Extra space.
zundel 2012/03/02 23:51:00 Done.
Expect.equals(false, false);
Expect.equals(true, true === true);
Expect.equals(false, true === false);

Powered by Google App Engine
This is Rietveld 408576698