Skip to content

Commit

Permalink
test: update for error change from lib
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Aug 15, 2024
1 parent 35d77b4 commit 81af695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/commands/package/version.delete.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ describe('package:version:delete', () => {
expect(false, 'Expected invalid id error').to.be.true;
} catch (err) {
const error = err as Error;
expect(error.name).to.equal('ErrorInvalidPackageVersionIdError');
expect(error.name).to.equal('PackageAliasNotFoundError');
}
});
it('should delete a package version', async () => {
Expand Down

0 comments on commit 81af695

Please sign in to comment.