Skip to content

Commit

Permalink
Fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed May 27, 2020
1 parent 4d84996 commit bf5c52a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test-components/GitPanel.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as apputils from '@jupyterlab/apputils';
import 'jest';
import { GitExtension as GitModel } from '../../src/model';
import * as git from '../../src/git';
import { GitPanel, IGitSessionNodeProps } from '../../src/components/GitPanel';
import { GitPanel, IGitPanelProps } from '../../src/components/GitPanel';

jest.mock('../../src/git');
jest.mock('@jupyterlab/apputils');
Expand Down Expand Up @@ -76,7 +76,7 @@ function MockSettings() {

describe('GitPanel', () => {
describe('#commitStagedFiles()', () => {
const props: IGitSessionNodeProps = {
const props: IGitPanelProps = {
model: null,
renderMime: null,
settings: null,
Expand Down

0 comments on commit bf5c52a

Please sign in to comment.