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
1 changed files with 2 additions and 2 deletions

View File

@ -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];
}
}