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

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

Issue 10977027: Update all occurrences of raw strings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't disable just yet. Created 8 years, 3 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/path_test.dart
diff --git a/tests/standalone/io/path_test.dart b/tests/standalone/io/path_test.dart
index c9565e596fd3d156c83c44a47fa3ae47259a12e2..b448c9a379ed0fc54dd4854d65ff15df42a97a7b 100644
--- a/tests/standalone/io/path_test.dart
+++ b/tests/standalone/io/path_test.dart
@@ -74,13 +74,13 @@ void testBaseFunctions() {
} else {
// Make sure that backslashes are uninterpreted on other platforms.
testGetters(new Path.fromNative(r"/foo\bar/bif/fisk.hest"),
- [@'/foo\bar/bif', 'fisk.hest', 'fisk', 'hest'],
+ [r'/foo\bar/bif', 'fisk.hest', 'fisk', 'hest'],
'absolute canonical');
testGetters(new Path.fromNative(r"//foo\bar///bif////fisk.hest"),
- [@'//foo\bar///bif', 'fisk.hest', 'fisk', 'hest'],
+ [r'//foo\bar///bif', 'fisk.hest', 'fisk', 'hest'],
'absolute');
testGetters(new Path.fromNative(r"/foo\ bar/bif/gule\ fisk.hest"),
- [@'/foo\ bar/bif', @'gule\ fisk.hest', @'gule\ fisk', 'hest'],
+ [r'/foo\ bar/bif', r'gule\ fisk.hest', r'gule\ fisk', 'hest'],
'absolute canonical');
}
}

Powered by Google App Engine
This is Rietveld 408576698