Skip to content

Commit

Permalink
removed the unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
rashmivkulkarni committed Sep 18, 2020
1 parent 8d9a0e1 commit 1b03153
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x-pack/test/accessibility/apps/dashboard_edit_panel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
import { FtrProviderContext } from '../ftr_provider_context';

export default function ({ getService, getPageObjects }: FtrProviderContext) {
const { dashboard, common, timePicker } = getPageObjects(['dashboard']);
const { dashboard } = getPageObjects(['dashboard']);
const a11y = getService('a11y');
const dashboardPanelActions = getService('dashboardPanelActions');
const testSubjects = getService('testSubjects');
const esArchiver = getService('esArchiver');
const drilldowns = getService('dashboardDrilldownsManage');
const kibanaServer = getService('kibanaServer');
const PageObjects = getPageObjects(['common', 'security']);
const PageObjects = getPageObjects(['security', 'common']);
const toasts = getService('toasts');

describe('Dashboard Edit Panel', () => {
Expand Down

0 comments on commit 1b03153

Please sign in to comment.