diff --git a/src/practices/LanguageIndependent/FatPullRequestsPractice.spec.ts b/src/practices/LanguageIndependent/ThinPullRequestsPractice.spec.ts similarity index 98% rename from src/practices/LanguageIndependent/FatPullRequestsPractice.spec.ts rename to src/practices/LanguageIndependent/ThinPullRequestsPractice.spec.ts index d3bed2183..275bcb265 100644 --- a/src/practices/LanguageIndependent/FatPullRequestsPractice.spec.ts +++ b/src/practices/LanguageIndependent/ThinPullRequestsPractice.spec.ts @@ -6,7 +6,7 @@ import { PracticeEvaluationResult } from '../../model'; import { BitbucketPullRequestState, BitbucketService } from '../../services'; import { BitbucketNock } from '../../test/helpers/bitbucketNock'; import { Types } from '../../types'; -import { ThinPullRequestsPractice } from './FatPullRequestsPractice'; +import { ThinPullRequestsPractice } from './ThinPullRequestsPractice'; describe('ThinPullRequestsPractice', () => { let practice: ThinPullRequestsPractice; diff --git a/src/practices/LanguageIndependent/FatPullRequestsPractice.ts b/src/practices/LanguageIndependent/ThinPullRequestsPractice.ts similarity index 100% rename from src/practices/LanguageIndependent/FatPullRequestsPractice.ts rename to src/practices/LanguageIndependent/ThinPullRequestsPractice.ts diff --git a/src/practices/index.ts b/src/practices/index.ts index ea0332be1..415801b36 100644 --- a/src/practices/index.ts +++ b/src/practices/index.ts @@ -24,7 +24,7 @@ import { DoesPullRequestsPractice } from './LanguageIndependent/DoesPullRequests import { DependenciesVersionMinorPatchLevelPractice } from './JavaScript/DependenciesVersionMinorPatchLevel'; import { CorrectCommitMessagesPractice } from './LanguageIndependent/CorrectCommitMessagesPractice'; import { TimeToSolvePullRequestsPractice } from './LanguageIndependent/TimeToSolvePullRequestsPractice'; -import { ThinPullRequestsPractice } from './LanguageIndependent/FatPullRequestsPractice'; +import { ThinPullRequestsPractice } from './LanguageIndependent/ThinPullRequestsPractice'; // register practices here export const practices = [