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

Unified Diff: tests/language_strong/abstract_runtime_error_test.dart

Issue 2763823002: Move spaces from before comments to within comments (Closed)
Patch Set: Fix comments Created 3 years, 9 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_strong/abstract_runtime_error_test.dart
diff --git a/tests/language_strong/abstract_runtime_error_test.dart b/tests/language_strong/abstract_runtime_error_test.dart
index eb6a0ead724e90b8f50718c43f62e238fc706610..62cf3f7ebdbdfef48ee4be5b4546b2a1d10b2bee 100644
--- a/tests/language_strong/abstract_runtime_error_test.dart
+++ b/tests/language_strong/abstract_runtime_error_test.dart
@@ -37,9 +37,9 @@ bool isAbstractClassInstantiationError(e) {
void main() {
Expect.throws(interface, isAbstractClassInstantiationError, /// 01: continued
- "expected AbstractClassInstantiationError"); /// 01: continued
+ "expected AbstractClassInstantiationError"); // /// 01: continued
Expect.throws(abstractClass, isAbstractClassInstantiationError, /// 02: continued
- "expected AbstractClassInstantiationError"); /// 02: continued
+ "expected AbstractClassInstantiationError"); // /// 02: continued
Expect.stringEquals('ConcreteSubclass', '${new ConcreteSubclass()}');
Expect.stringEquals('NonAbstractClass', '${new NonAbstractClass()}');
}

Powered by Google App Engine
This is Rietveld 408576698