Skip to content

Commit

Permalink
Remove unneeded test block
Browse files Browse the repository at this point in the history
  • Loading branch information
guicamest committed Apr 27, 2023
1 parent c6d52ca commit 992ac7c
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions lib/modules/manager/gradle/parser.spec.ts
Expand Up @@ -419,24 +419,6 @@ describe('modules/manager/gradle/parser', () => {
});
});

describe('properties map accessors', () => {
test.each`
accessor
${'properties'}
${'project.properties'}
${'rootProject.properties'}
`('$accessor', ({ accessor }) => {
const input = `
baz = "1.2.3"
api("foo:bar:$\{${String(accessor)}["baz"]}")
`;
const { deps } = parseGradle(input);
expect(deps).toMatchObject([
{ depName: 'foo:bar', currentValue: '1.2.3', groupName: 'baz' },
]);
});
});

describe('kotlin() short notation dependencies', () => {
const output = {
depName: 'foo',
Expand Down

0 comments on commit 992ac7c

Please sign in to comment.