Skip to content

Commit

Permalink
fix(GH-36): Update the "should create an instance of DotnetOutdatedCo…
Browse files Browse the repository at this point in the history
…mmandProblemError with the correct properties" test
  • Loading branch information
gavanlamb committed Jun 18, 2024
1 parent 4a78c9d commit fa1057c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __tests__/errors/dotnetOutdatedCommandProblemError.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down

0 comments on commit fa1057c

Please sign in to comment.