Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
fatso83 committed Apr 20, 2023
1 parent aa9662b commit 040b144
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/issues/issues-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -825,9 +825,7 @@ describe("issues", function () {

describe("#2491 - unable to restore spies on an instance where the prototype has an unconfigurable property descriptor", function () {
function createInstanceFromClassWithReadOnlyPropertyDescriptor() {
class BaseClass {
instanceProperty = 1;
}
class BaseClass {}
Object.defineProperty(BaseClass.prototype, "aMethod", {
value: function () {
return 42;
Expand Down

0 comments on commit 040b144

Please sign in to comment.