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

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

Issue 11878015: Default constructor for dart:io Path now handles native Windows paths. Path() now does the same as… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't change tools/version.dart until the binaries are updated. Created 7 years, 11 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/secure_server_stream_test.dart
diff --git a/tests/standalone/io/secure_server_stream_test.dart b/tests/standalone/io/secure_server_stream_test.dart
index da0ecc8af5d3ad5e111216db7d6c996c0a2722de..d99e93e1d22d519dc22a56f7c5ddac0cadbafaa7 100644
--- a/tests/standalone/io/secure_server_stream_test.dart
+++ b/tests/standalone/io/secure_server_stream_test.dart
@@ -81,7 +81,7 @@ const CLIENT_NAMES = const ['able', 'baker', 'camera', 'donut', 'echo'];
void main() {
ReceivePort keepAlive = new ReceivePort();
- Path scriptDir = new Path.fromNative(new Options().script).directoryPath;
+ Path scriptDir = new Path(new Options().script).directoryPath;
Path certificateDatabase = scriptDir.append('pkcert');
SecureSocket.initialize(database: certificateDatabase.toNativePath(),
password: 'dartdart');
« no previous file with comments | « tests/standalone/io/secure_server_client_certificate_test.dart ('k') | tests/standalone/io/secure_server_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698