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

Unified Diff: test/mjsunit/string-add.js

Issue 8888006: Make more JS files beter match the coding standard. Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments Created 9 years 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 | « test/mjsunit/strict-mode-implicit-receiver.js ('k') | test/mjsunit/string-charat.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/string-add.js
diff --git a/test/mjsunit/string-add.js b/test/mjsunit/string-add.js
index f226ca18c491ad47c2e176274d420804f1f9be7a..b68e7d8112cdc6b4f0b52bdc13234478319d8af7 100644
--- a/test/mjsunit/string-add.js
+++ b/test/mjsunit/string-add.js
@@ -189,7 +189,7 @@ for (var i = 0; i <= 20; i++) {
// Add ascii and non-ascii strings generating strings with length from 0 to 20.
for (var i = 0; i <= 20; i++) {
for (var j = 0; j < i; j++) {
- assertEquals(a[i], a[j] + a[i - j])
- assertEquals(b[i], b[j] + b[i - j])
+ assertEquals(a[i], a[j] + a[i - j]);
+ assertEquals(b[i], b[j] + b[i - j]);
}
}
« no previous file with comments | « test/mjsunit/strict-mode-implicit-receiver.js ('k') | test/mjsunit/string-charat.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698