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

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

Issue 9479034: Update test.dart for detection output of machine formatted errors (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updates the multitest logic. 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..215a5fe74798d056f6681f5e33833a4019aa0d64 100644
--- a/tests/language/src/BoolTest.dart
+++ b/tests/language/src/BoolTest.dart
@@ -6,8 +6,8 @@
class BoolTest {
static void testEquality() {
- Expect.equals(true, true);
- Expect.equals(false, false);
+ Expect.equals(true, true);
+ Expect.equals(false, false);
Expect.equals(true, true === true);
Expect.equals(false, true === false);
Expect.equals(true, false === false);
@@ -37,7 +37,7 @@ class BoolTest {
Expect.equals(false, false === (false == false));
Expect.equals(false, true === (false == true));
Expect.equals(true, false !== (true == true));
- Expect.equals(true, true !== (true == false));
+ Expect.equals(true, true !== (true == false));
scheglov 2012/03/01 21:42:30 Why these trailing spaces?
zundel 2012/03/01 21:51:43 I will take care of them. I was abusing BoolTest t
Expect.equals(true, false !== (false == false));
Expect.equals(true, true !== (false == true));
// Expect.equals could rely on a broken boolean equality.

Powered by Google App Engine
This is Rietveld 408576698