Skip to content

Commit

Permalink
Fix linting errors in mockSubscriptionLink test
Browse files Browse the repository at this point in the history
  • Loading branch information
dfrankland committed May 8, 2020
1 parent dfd36b1 commit f1786a5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { render, cleanup, wait } from '@testing-library/react';
import { render, wait } from '@testing-library/react';
import gql from 'graphql-tag';

import { MockSubscriptionLink } from '../mockSubscriptionLink';
Expand Down Expand Up @@ -35,7 +35,7 @@ describe('mockSubscriptionLink', () => {

let renderCountB = 0;
const ComponentB = () => {
const { loading, data, error } = useSubscription(subscription);
useSubscription(subscription);
renderCountB += 1;
return null;
};
Expand Down

0 comments on commit f1786a5

Please sign in to comment.