Skip to content

Commit

Permalink
chore: fix typos in test descriptions (#29011)
Browse files Browse the repository at this point in the history
  • Loading branch information
HonkingGoose committed May 12, 2024
1 parent b333f4b commit 5540e0b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/config/migrations/custom/node-migration.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe('config/migrations/custom/node-migration', () => {
);
});

it('should not delete node incase it has more than one property', () => {
it('should not delete node in case it has more than one property', () => {
expect(NodeMigration).toMigrate(
{
node: { enabled: true, automerge: false },
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/manager/bundler/update-locked.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ describe('modules/manager/bundler/update-locked', () => {
expect(updateLockedDependency(config).status).toBe('unsupported');
});

it('returns update-falied incase of errors', () => {
it('returns update-failed in case of errors', () => {
const config: UpdateLockedConfig = {
packageFile: 'Gemfile',
lockFile: 'Gemfile.lock',
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/manager/cargo/update-locked.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ describe('modules/manager/cargo/update-locked', () => {
expect(updateLockedDependency(config).status).toBe('unsupported');
});

it('returns update-failed incase of errors', () => {
it('returns update-failed in case of errors', () => {
const config: UpdateLockedConfig = {
packageFile: 'Cargo.toml',
lockFile: 'Cargo.lock',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ describe('workers/repository/update/pr/body/updates-table', () => {
);
});

it('selects the best upgrade incase of duplicate table rows', () => {
it('selects the best upgrade in case of duplicate table rows', () => {
const upgrade1 = partial<BranchUpgradeConfig>({
manager: 'some-manager',
branchName: 'some-branch',
Expand Down

0 comments on commit 5540e0b

Please sign in to comment.