Index: test/webkit/class-syntax-extends.js |
diff --git a/test/webkit/class-syntax-extends.js b/test/webkit/class-syntax-extends.js |
index 3c7ee19cef96d96095377012977604edeacbbb68..a1b8f1292d917760b1830789e3587cd0ca78c172 100644 |
--- a/test/webkit/class-syntax-extends.js |
+++ b/test/webkit/class-syntax-extends.js |
@@ -100,7 +100,7 @@ shouldThrow('x = {}; new (class extends undefined { constructor () { return x; } |
shouldThrow('y = 12; new (class extends undefined { constructor () { return y; } })', '"TypeError: Class extends value undefined is not a function or null"'); |
shouldBeTrue ('class x {}; new (class extends null { constructor () { return new x; } }) instanceof x'); |
shouldThrow('new (class extends null { constructor () { this; } })', '"ReferenceError: this is not defined"'); |
-shouldThrow('new (class extends null { constructor () { super(); } })', '"TypeError: function () {} is not a constructor"'); |
+shouldThrow('new (class extends null { constructor () { super(); } })', '"TypeError: super is not a constructor"'); |
shouldBe('x = {}; new (class extends null { constructor () { return x } })', 'x'); |
shouldThrow('y = 12; new (class extends null { constructor () { return y; } })', '"TypeError: Derived constructors may only return object or undefined"'); |
shouldBeTrue ('class x {}; new (class extends null { constructor () { return new x; } }) instanceof x'); |