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

Unified Diff: sdk/lib/_internal/pub/test/serve/404_page_test.dart

Issue 1055283003: Fix off-by-one error in https://code.google.com/p/dart/source/detail?r=45153 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 8 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 | sdk/lib/convert/html_escape.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/test/serve/404_page_test.dart
===================================================================
--- sdk/lib/_internal/pub/test/serve/404_page_test.dart (revision 45184)
+++ sdk/lib/_internal/pub/test/serve/404_page_test.dart (working copy)
@@ -39,7 +39,7 @@
expect(response.statusCode, equals(404));
// Should mention the asset that can't be found.
- expect(response.body, contains('".packages"'));
+ expect(response.body, contains('"/packages"'));
});
endPubServe();
« no previous file with comments | « no previous file | sdk/lib/convert/html_escape.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698