Skip to content

Commit

Permalink
test: update wrong assertion (#28741)
Browse files Browse the repository at this point in the history
  • Loading branch information
RahulGautamSingh authored and rarkins committed May 3, 2024
1 parent e55b636 commit fa65c2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/util/package-rules/package-patterns.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('util/package-rules/package-patterns', () => {
expect(result).toBeTrue();
});

it('should fall back to matching depName', () => {
it('should not fall back to matching depName', () => {
const result = packagePatternsMatcher.matches(
{
depName: 'abc',
Expand All @@ -38,7 +38,7 @@ describe('util/package-rules/package-patterns', () => {
matchPackagePatterns: ['abc'],
},
);
expect(result).toBeTrue();
expect(result).toBeFalse();
});
});

Expand Down

0 comments on commit fa65c2d

Please sign in to comment.