Skip to content

Commit

Permalink
Poetry: fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
gilbsgilbs committed Sep 22, 2019
1 parent 81de022 commit d95be0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/manager/poetry/extract.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ describe('lib/manager/poetry/extract', () => {
});
it('can parse empty registries', () => {
const res = extractPackageFile(pyproject7toml, config);
expect(res.registryUrls).toEqual([]);
expect(res.registryUrls).toBeNull();
});
it('can parse missing registries', () => {
const res = extractPackageFile(pyproject1toml, config);
expect(res.registryUrls).toEqual([]);
expect(res.registryUrls).toBeNull();
});
it('skips git dependencies', () => {
const content =
Expand Down

0 comments on commit d95be0c

Please sign in to comment.