Skip to content

Commit

Permalink
chore: clean up imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Jul 3, 2020
1 parent 1137112 commit b60cc2c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/manager/gradle/gradle-updates-report.spec.ts
Expand Up @@ -8,7 +8,7 @@ import {
GRADLE_DEPENDENCY_REPORT_FILENAME,
createRenovateGradlePlugin,
} from './gradle-updates-report';
import { GRADLE_DEPENDENCY_REPORT_OPTIONS } from './index';
import { GRADLE_DEPENDENCY_REPORT_OPTIONS } from '.';

const fixtures = 'lib/manager/gradle/__fixtures__';

Expand Down
2 changes: 1 addition & 1 deletion lib/manager/maven/index.spec.ts
Expand Up @@ -2,7 +2,7 @@ import { readFileSync } from 'fs';
import { fs } from '../../../test/util';
import { PackageDependency, PackageFile } from '../common';
import { extractPackage, resolveParents } from './extract';
import { extractAllPackageFiles, updateDependency } from './index';
import { extractAllPackageFiles, updateDependency } from '.';

jest.mock('../../util/fs');

Expand Down
2 changes: 1 addition & 1 deletion lib/util/fs/index.spec.ts
@@ -1,5 +1,5 @@
import { getName } from '../../../test/util';
import { readLocalFile } from './index';
import { readLocalFile } from '.';

describe(getName(__filename), () => {
describe('readLocalFile', () => {
Expand Down
2 changes: 1 addition & 1 deletion lib/util/git/index.spec.ts
@@ -1,7 +1,7 @@
import fs from 'fs-extra';
import Git from 'simple-git/promise';
import tmp from 'tmp-promise';
import * as git from './index';
import * as git from '.';

describe('platform/git', () => {
jest.setTimeout(15000);
Expand Down
2 changes: 1 addition & 1 deletion lib/workers/repository/process/index.spec.ts
@@ -1,6 +1,6 @@
import { RenovateConfig, getConfig, mocked } from '../../../../test/util';
import * as _extractUpdate from './extract-update';
import { extractDependencies, updateRepo } from './index';
import { extractDependencies, updateRepo } from '.';

jest.mock('./extract-update');

Expand Down

0 comments on commit b60cc2c

Please sign in to comment.