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

Unified Diff: pkg/unittest/test/unittest_skipped_soloed_nested_test.dart

Issue 145403005: pkg/unittest: formatter spin (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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: pkg/unittest/test/unittest_skipped_soloed_nested_test.dart
diff --git a/pkg/unittest/test/unittest_skipped_soloed_nested_test.dart b/pkg/unittest/test/unittest_skipped_soloed_nested_test.dart
index 2ec908dfef54a79fff672c93e80a771c3e00e8e8..3cbd09d4db0d42f97867423acbed8e240abbe836 100644
--- a/pkg/unittest/test/unittest_skipped_soloed_nested_test.dart
+++ b/pkg/unittest/test/unittest_skipped_soloed_nested_test.dart
@@ -14,8 +14,7 @@ var testName = 'skipped/soloed nested groups with setup/teardown';
var testFunction = (_) {
StringBuffer s = null;
setUp(() {
- if (s == null)
- s = new StringBuffer();
+ if (s == null) s = new StringBuffer();
});
test('top level', () {
s.write('A');

Powered by Google App Engine
This is Rietveld 408576698