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

Unified Diff: pkg/http_server/test/virtual_directory_test.dart

Issue 356843004: Don't use å in non-ascii test, as it can have multiple representations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/http_server/test/virtual_directory_test.dart
diff --git a/pkg/http_server/test/virtual_directory_test.dart b/pkg/http_server/test/virtual_directory_test.dart
index 9bc65cfb8e646af9b188664aa1ef1cb9071ca020..81e0071894b3b10f202c52460a2d5c88e79b9e09 100644
--- a/pkg/http_server/test/virtual_directory_test.dart
+++ b/pkg/http_server/test/virtual_directory_test.dart
@@ -142,12 +142,12 @@ void main() {
testVirtualDir('non-ascii-dir', (dir) {
var virDir = new VirtualDirectory(dir.path);
- new Directory('${dir.path}/æøå').createSync();
+ new Directory('${dir.path}/æø').createSync();
virDir.allowDirectoryListing = true;
return getAsString(virDir, '/')
.then((result) {
- expect(result, contains('æøå'));
+ expect(result, contains('æø'));
});
});
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698