Skip to content

Commit

Permalink
refactor: remove constants file
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarvin8 committed Apr 5, 2024
1 parent 8f9f011 commit a545ea9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions src/commands/apex-tests-git-delta/delta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import * as fs from 'node:fs';

import { SfCommand, Flags } from '@salesforce/sf-plugins-core';
import { Messages } from '@salesforce/core';
import { TO_DEFAULT_VALUE } from '../../constants/gitConstants.js';
import { extractTestClasses } from '../../service/extractTestClasses.js';

Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
Expand All @@ -25,7 +24,7 @@ export default class ApexTestDelta extends SfCommand<TestDeltaResult> {
char: 't',
summary: messages.getMessage('flags.to.summary'),
required: true,
default: TO_DEFAULT_VALUE,
default: 'HEAD',
}),
from: Flags.string({
char: 'f',
Expand Down
2 changes: 0 additions & 2 deletions src/constants/gitConstants.ts

This file was deleted.

0 comments on commit a545ea9

Please sign in to comment.