summaryrefslogtreecommitdiff
path: root/test/js-native-api/test_constructor/test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/js-native-api/test_constructor/test.js')
-rw-r--r--test/js-native-api/test_constructor/test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js-native-api/test_constructor/test.js b/test/js-native-api/test_constructor/test.js
index 616ba6c2a2..990e70a0a7 100644
--- a/test/js-native-api/test_constructor/test.js
+++ b/test/js-native-api/test_constructor/test.js
@@ -44,7 +44,7 @@ assert.strictEqual(test_object.readonlyAccessor2, 2);
assert.throws(() => { test_object.readonlyAccessor2 = 3; },
/^TypeError: Cannot assign to read only property 'readonlyAccessor2' of object '#<MyObject>'$/);
-// validate that static properties are on the class as opposed
+// Validate that static properties are on the class as opposed
// to the instance
assert.strictEqual(TestConstructor.staticReadonlyAccessor1, 10);
assert.strictEqual(test_object.staticReadonlyAccessor1, undefined);