Uncomment super increment expression set tests (#7721)

This was failing because of the bugs fixed by #7687.
This commit is contained in:
Justin Ridgewell
2018-04-12 13:24:07 -04:00
committed by GitHub
parent ecbf0dd53c
commit ec882be44d
2 changed files with 2 additions and 4 deletions

View File

@@ -11,5 +11,4 @@ Object.setPrototypeOf(obj, Base);
assert.strictEqual(obj.bar(), 1);
assert.strictEqual(Base.test, '1');
// TODO(jridgewell): Post #7687, uncomment this.
// assert.strictEqual(obj.test, 2);
assert.strictEqual(obj.test, 2);

View File

@@ -11,5 +11,4 @@ Object.setPrototypeOf(obj, Base);
assert.strictEqual(obj.bar(), 2);
assert.strictEqual(Base.test, '1');
// TODO(jridgewell): Post #7687, uncomment this.
// assert.strictEqual(obj.test, 2);
assert.strictEqual(obj.test, 2);