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

Unified Diff: tests/io/file_test.dart

Issue 1209033003: Work in progres, please take a look and give early feedback if this is the way we want to structure… (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: address comments Created 5 years, 6 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/ffi/ffi_timeofday_test.dart ('k') | tests/service_tests/conformance/dart/conformance_service.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/io/file_test.dart
diff --git a/tests/io/file_test.dart b/tests/io/file_test.dart
index ee487885c652f630d37343eadd84f6a9de5bde5b..5ddbc25a88bc60966dbfe287e6c8d63e0d57fa1b 100644
--- a/tests/io/file_test.dart
+++ b/tests/io/file_test.dart
@@ -18,7 +18,6 @@ bool isFileException(e) => e is FileException;
void testOpen() {
String path = '/tmp/__fletch_dart_io_non_exist_file__';
Expect.throws(() => new File.open(path), isFileException);
-
var file = new File.temporary("/tmp/file_test");
Expect.isTrue(file.isOpen);
Expect.isTrue(File.existsAsFile(file.path));
« no previous file with comments | « tests/ffi/ffi_timeofday_test.dart ('k') | tests/service_tests/conformance/dart/conformance_service.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698