@@ -175,16 +175,16 @@ func TestBuildPoetryDependencyList(t *testing.T) {
175
175
_ , cleanUp := sca .CreateTestWorkspace (t , filepath .Join ("projects" , "package-managers" , "python" , "poetry" , "my-poetry-project" ))
176
176
defer cleanUp ()
177
177
expectedPoetryUniqueDeps := []string {
178
- PythonPackageTypeIdentifier + "wcwidth:0.2.8 " ,
178
+ PythonPackageTypeIdentifier + "wcwidth:0.2.13 " ,
179
179
PythonPackageTypeIdentifier + "colorama:0.4.6" ,
180
- PythonPackageTypeIdentifier + "packaging:23 .2" ,
180
+ PythonPackageTypeIdentifier + "packaging:24 .2" ,
181
181
PythonPackageTypeIdentifier + "python:" ,
182
182
PythonPackageTypeIdentifier + "pluggy:0.13.1" ,
183
183
PythonPackageTypeIdentifier + "py:1.11.0" ,
184
184
PythonPackageTypeIdentifier + "atomicwrites:1.4.1" ,
185
- PythonPackageTypeIdentifier + "attrs:23 .1.0" ,
186
- PythonPackageTypeIdentifier + "more-itertools:10.1 .0" ,
187
- PythonPackageTypeIdentifier + "numpy:1.26.1 " ,
185
+ PythonPackageTypeIdentifier + "attrs:25 .1.0" ,
186
+ PythonPackageTypeIdentifier + "more-itertools:10.6 .0" ,
187
+ PythonPackageTypeIdentifier + "numpy:1.26.4 " ,
188
188
PythonPackageTypeIdentifier + "pytest:5.4.3" ,
189
189
}
190
190
// Run getModulesDependencyTrees
@@ -202,7 +202,7 @@ func TestBuildPoetryDependencyList(t *testing.T) {
202
202
childNode := tests .GetAndAssertNode (t , rootNode [0 ].Nodes , "pytest:5.4.3" )
203
203
// Test sub child module
204
204
if assert .NotNil (t , childNode ) {
205
- tests .GetAndAssertNode (t , childNode .Nodes , "packaging:23 .2" )
205
+ tests .GetAndAssertNode (t , childNode .Nodes , "packaging:24 .2" )
206
206
}
207
207
}
208
208
}
0 commit comments