Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Or-Geva committed Nov 6, 2023
1 parent ce3b0f6 commit 23bcd2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/test/resources/python/setup/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
setuptools.setup(
name="snake",
version="2.2.2",
install_requires=['fire==0.1.3', 'regex==2017.4.5', 'newrelic==2.0.0.1']
install_requires=['fire==0.1.3', 'newrelic==2.0.0.1']
)
4 changes: 2 additions & 2 deletions src/test/tests/pypiUtils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ describe('Pypi Utils Tests', async () => {
);
node = parent.children[1] as PypiTreeNode;
assert.deepEqual(node.label, 'setup.py');
assert.deepEqual(node.children.length, 3);
assert.deepEqual(node.children.length, 2);
checkFireDependency(node);

// Test 'resources/python/setupAndRequirements'
Expand Down Expand Up @@ -228,7 +228,7 @@ describe('Pypi Utils Tests', async () => {
assert.fail;
return;
}
assert.deepEqual(node.children.length, 3);
assert.deepEqual(node.children.length, 2);
checkFireDependency(node);
});

Expand Down

0 comments on commit 23bcd2b

Please sign in to comment.