diff --git a/__tests__/errors/dotnetOutdatedCommandProblemError.test.ts b/__tests__/errors/dotnetOutdatedCommandProblemError.test.ts index 19f0119..376da45 100644 --- a/__tests__/errors/dotnetOutdatedCommandProblemError.test.ts +++ b/__tests__/errors/dotnetOutdatedCommandProblemError.test.ts @@ -12,7 +12,7 @@ describe('DotnetOutdatedCommandProblemError', () => { const error = new DotnetOutdatedCommandProblemError(projectName, message); expect(error).toBeInstanceOf(DotnetOutdatedCommandProblemError); - expect(error.name).toBe('DotnetOutdatedCommandProblem'); + expect(error.name).toBe('DotnetOutdatedCommandProblemError'); expect(error.projectName).toBe(projectName); expect(error.message).toBe(message); });