Index: tests/standalone/io/file_test.dart |
diff --git a/tests/standalone/io/file_test.dart b/tests/standalone/io/file_test.dart |
index 2123b896632547c0afcf41d9613311790efc9298..dc6bac6ec568dba26b5a3e41292dbb95a96b8361 100644 |
--- a/tests/standalone/io/file_test.dart |
+++ b/tests/standalone/io/file_test.dart |
@@ -920,16 +920,6 @@ class FileTest { |
} |
} |
- static void testOpenFile() { |
- var name = getFilename("tests/vm/data/fixed_length_file"); |
- var f = new File(name); |
- Expect.isTrue(f.existsSync()); |
- name = f.fullPathSync(); |
- var g = new File(name); |
- Expect.isTrue(g.existsSync()); |
- Expect.equals(name, g.fullPathSync()); |
- } |
- |
static void testReadAsBytes() { |
asyncTestStarted(); |
var name = getFilename("tests/vm/data/fixed_length_file"); |
@@ -1269,7 +1259,6 @@ class FileTest { |
testPositionSync(); |
testOpenDirectoryAsFile(); |
testOpenDirectoryAsFileSync(); |
- testOpenFile(); |
testReadAsBytesSync(); |
testReadAsBytesSyncEmptyFile(); |
testReadAsTextSync(); |