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

Unified Diff: runtime/platform/assert.h

Issue 243973002: - Add a minimal implementation of Capability. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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
Index: runtime/platform/assert.h
===================================================================
--- runtime/platform/assert.h (revision 35191)
+++ runtime/platform/assert.h (working copy)
@@ -144,7 +144,7 @@
ass << actual;
std::string es = ess.str(), as = ass.str();
if (as == es) return;
- Fail("expected: <\"%s\"> but was: <\"%s\">", es.c_str(), as.c_str());
+ Fail("expected:\n<\"%s\">\nbut was:\n<\"%s\">", es.c_str(), as.c_str());
}

Powered by Google App Engine
This is Rietveld 408576698