Index: tests/pkg/file/file_test.dart |
diff --git a/tests/pkg/file/file_test.dart b/tests/pkg/file/file_test.dart |
index bb658ffb3dfc36bcda5d0bd8660ca7bf861b30d5..38e347d46a87ffadc001b02b745ddb4375770569 100644 |
--- a/tests/pkg/file/file_test.dart |
+++ b/tests/pkg/file/file_test.dart |
@@ -16,7 +16,7 @@ void main() { |
bool isFileException(e) => e is FileException; |
void testOpen() { |
- String path = '/tmp/__fletch_dart_io_non_exist_file__'; |
+ String path = '/tmp/__dartino_dart_io_non_exist_file__'; |
Expect.throws(() => new File.open(path), isFileException); |
var file = new File.temporary("/tmp/file_test"); |
Expect.isTrue(file.isOpen); |