Index: test/cctest/test-parsing.cc |
diff --git a/test/cctest/test-parsing.cc b/test/cctest/test-parsing.cc |
index a59566bd8003ac5175acbff69fccf0d867395204..b552fcc120f6f1694ba9065fa4c25357ba9ca48d 100644 |
--- a/test/cctest/test-parsing.cc |
+++ b/test/cctest/test-parsing.cc |
@@ -2545,7 +2545,8 @@ TEST(DontRegressPreParserDataSizes) { |
// No functions. |
{"var x = 42;", 0}, |
// Functions. |
- {"function foo() {}", 1}, {"function foo() {} function bar() {}", 2}, |
+ {"function foo() {}", 1}, |
+ {"function foo() {} function bar() {}", 2}, |
// Getter / setter functions are recorded as functions if they're on the top |
// level. |
{"var x = {get foo(){} };", 1}, |