Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
harsh183 committed Jun 2, 2024
1 parent ab62e43 commit 6b686ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screens/Admin/Instructors/InstructorList.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { render, screen } from '@testing-library/react';
import userEvent from "@testing-library/user-event";
import InstructorList from './InstructorList';
import * as KeyCode from 'keycode-js';
import InstructorList from './InstructorList';

describe('Instructor List', () => {
const universityName = 'University of Test'
Expand All @@ -15,7 +15,7 @@ describe('Instructor List', () => {
const numberOfInstructors = () => screen.queryAllByText(`University: ${universityName}`).length

test('it renders', () => {
render(<InstructorList {...baseProps} instructors={[]}/>);
render(<InstructorList {...baseProps} instructors={[]} />);

expect(numberOfInstructors()).toBe(0);
});
Expand Down

0 comments on commit 6b686ee

Please sign in to comment.