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

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
« no previous file with comments | « tests/standalone/io/file_output_stream_test.dart ('k') | tests/standalone/io/http_client_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 30c0396928c0fa68130576bb270569a15ccf787e..66633f2f5f0ad1d2164ba295de20098083762956 100644
--- a/tests/standalone/src/io/FileTest.dart
+++ b/tests/standalone/io/file_test.dart
@@ -896,7 +896,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) {
@@ -926,7 +926,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];
@@ -962,7 +962,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);
}
« no previous file with comments | « tests/standalone/io/file_output_stream_test.dart ('k') | tests/standalone/io/http_client_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698