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

Unified Diff: tests/standalone/io/directory_non_ascii_sync_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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/standalone/io/directory_non_ascii_sync_test.dart
diff --git a/tests/standalone/io/directory_non_ascii_sync_test.dart b/tests/standalone/io/directory_non_ascii_sync_test.dart
index 68eafef73d0eec77d0cb1710d0ba2ea857e3f386..df2283fc0c569a44a03d08439b42de8ed6aeb8f6 100644
--- a/tests/standalone/io/directory_non_ascii_sync_test.dart
+++ b/tests/standalone/io/directory_non_ascii_sync_test.dart
@@ -17,12 +17,12 @@ main() {
nonAsciiDir.createSync();
Expect.isTrue(nonAsciiDir.existsSync());
var temp = new Directory("${tempDir.path}/æøå").createTempSync('tempdir');
- Expect.isTrue(temp.path.contains(precomposed) ||
- temp.path.contains(decomposed));
+ Expect.isTrue(
+ temp.path.contains(precomposed) || temp.path.contains(decomposed));
temp.deleteSync();
temp = tempDir.createTempSync('æøå');
- Expect.isTrue(temp.path.contains(precomposed) ||
- temp.path.contains(decomposed));
+ Expect.isTrue(
+ temp.path.contains(precomposed) || temp.path.contains(decomposed));
temp.deleteSync();
tempDir.deleteSync(recursive: true);
Expect.isFalse(nonAsciiDir.existsSync());

Powered by Google App Engine
This is Rietveld 408576698