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

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

Issue 10252020: test rename overhaul: step 12 - standalone (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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/file_test.dart
diff --git a/tests/standalone/src/io/FileTest.dart b/tests/standalone/io/file_test.dart
similarity index 99%
rename from tests/standalone/src/io/FileTest.dart
rename to tests/standalone/io/file_test.dart
index c9efbcd9522a52753b368272f094c22f70766174..5d632860cb40332cff1d216ffca9a8069e0ce6ee 100644
--- a/tests/standalone/src/io/FileTest.dart
+++ b/tests/standalone/io/file_test.dart
@@ -892,7 +892,7 @@ class FileTest {
f.readAsText(Encoding.UTF_8, (text) {
Expect.isTrue(text.endsWith("42 bytes."));
Expect.equals(42, text.length);
- var name = getDataFilename("tests/standalone/src/io/read_as_text.dat");
+ var name = getDataFilename("tests/standalone/io/read_as_text.dat");
var f = new File(name);
f.onError = (e) => Expect.fail("No errors expected: $e");
f.readAsText(Encoding.UTF_8, (text) {
@@ -922,7 +922,7 @@ class FileTest {
var text = new File(name).readAsTextSync();
Expect.isTrue(text.endsWith("42 bytes."));
Expect.equals(42, text.length);
- name = getDataFilename("tests/standalone/src/io/read_as_text.dat");
+ name = getDataFilename("tests/standalone/io/read_as_text.dat");
text = new File(name).readAsTextSync();
Expect.equals(6, text.length);
var expected = [955, 120, 46, 32, 120, 10];
@@ -958,7 +958,7 @@ class FileTest {
var line = lines[0];
Expect.isTrue(line.endsWith("42 bytes."));
Expect.equals(42, line.length);
- name = getDataFilename("tests/standalone/src/io/readline_test1.dat");
+ name = getDataFilename("tests/standalone/io/readline_test1.dat");
lines = new File(name).readAsLinesSync();
Expect.equals(10, lines.length);
}

Powered by Google App Engine
This is Rietveld 408576698