Skip to content

Commit 6907de1

Browse files
authored
test(changelog): Move fixture files (#30225)
1 parent 2dfc542 commit 6907de1

File tree

8 files changed

+7
-7
lines changed

8 files changed

+7
-7
lines changed

lib/workers/repository/update/pr/changelog/bitbucket/index.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { BitbucketChangeLogSource } from './source';
99
const baseUrl = 'https://bitbucket.org/';
1010
const apiBaseUrl = 'https://api.bitbucket.org/';
1111

12-
const changelogMd = Fixtures.get('jest.md', '../..');
12+
const changelogMd = Fixtures.get('jest.md', '..');
1313

1414
const upgrade = partial<BranchUpgradeConfig>({
1515
manager: 'some-manager',

lib/workers/repository/update/pr/changelog/release-notes.spec.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jest.mock('../../../../../util/host-rules', () => mockDeep());
2828

2929
const hostRules = mocked(_hostRules);
3030

31-
const angularJsChangelogMd = Fixtures.get('angular-js.md', '..');
32-
const jestChangelogMd = Fixtures.get('jest.md', '..');
33-
const jsYamlChangelogMd = Fixtures.get('js-yaml.md', '..');
34-
const yargsChangelogMd = Fixtures.get('yargs.md', '..');
35-
const adapterutilsChangelogMd = Fixtures.get('adapter-utils.md', '..');
36-
const gitterWebappChangelogMd = Fixtures.get('gitter-webapp.md', '..');
31+
const angularJsChangelogMd = Fixtures.get('angular-js.md');
32+
const jestChangelogMd = Fixtures.get('jest.md');
33+
const jsYamlChangelogMd = Fixtures.get('js-yaml.md');
34+
const yargsChangelogMd = Fixtures.get('yargs.md');
35+
const adapterutilsChangelogMd = Fixtures.get('adapter-utils.md');
36+
const gitterWebappChangelogMd = Fixtures.get('gitter-webapp.md');
3737

3838
const githubTreeResponse = {
3939
tree: [

0 commit comments

Comments
 (0)