1
0
mirror of https://github.com/tc39/test262.git synced 2025-04-08 19:35:28 +02:00

Fix indentation in harness/propertHelper.js

This commit is contained in:
Rick Waldron 2017-08-31 14:05:15 -04:00
parent 767f3b74c1
commit c23ea89fe2

@ -140,9 +140,9 @@ function isWritable(obj, name, verifyProp, value) {
// configurations)
if (writeSucceeded) {
if (hadValue) {
obj[name] = oldValue;
obj[name] = oldValue;
} else {
delete obj[name];
delete obj[name];
}
}