Skip to content

Commit

Permalink
Fix lint errors (mocha/valid-test-description)
Browse files Browse the repository at this point in the history
  • Loading branch information
koba04 committed Aug 22, 2018
1 parent 8ad1015 commit 4aa56fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/enzyme-test-suite/test/ReactWrapper-spec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5131,7 +5131,7 @@ describeWithDOM('mount', () => {
});

describeIf(is('>= 15.3'), 'PureComponent', () => {
it('should not update when state and props did not change', () => {
it('does not update when state and props did not change', () => {
class Foo extends PureComponent {
constructor(props) {
super(props);
Expand Down Expand Up @@ -5165,7 +5165,7 @@ describeWithDOM('mount', () => {
});

describe('Own PureComponent implementation', () => {
it('should not update when state and props did not change', () => {
it('does not update when state and props did not change', () => {
class Foo extends React.Component {
constructor(props) {
super(props);
Expand Down
4 changes: 2 additions & 2 deletions packages/enzyme-test-suite/test/ShallowWrapper-spec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5502,7 +5502,7 @@ describe('shallow', () => {
});

describeIf(is('>= 15.3'), 'PureComponent', () => {
it('should not update when state and props did not change', () => {
it('does not update when state and props did not change', () => {
class Foo extends PureComponent {
constructor(props) {
super(props);
Expand Down Expand Up @@ -5536,7 +5536,7 @@ describe('shallow', () => {
});

describe('Own PureComponent implementation', () => {
it('should not update when state and props did not change', () => {
it('does not update when state and props did not change', () => {
class Foo extends React.Component {
constructor(props) {
super(props);
Expand Down

0 comments on commit 4aa56fa

Please sign in to comment.