Skip to content

Commit

Permalink
[meta] fix eslint violations
Browse files Browse the repository at this point in the history
(Bugfix in eslint v6.7)
  • Loading branch information
lh0x00 authored and ljharb committed Nov 30, 2019
1 parent 430eb0e commit 2a1d3d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/enzyme-test-suite/test/Utils-spec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -750,15 +750,15 @@ describe('Utils', () => {
}

incrementAndGet() {
this.count = this.count + 1;
this.count += 1;
return this.count;
}
}
const instance = new Counter();
const obj = {
count: 1,
incrementAndGet() {
this.count = this.count + 1;
this.count += 1;
return this.count;
},
};
Expand Down

0 comments on commit 2a1d3d8

Please sign in to comment.