@@ -38,11 +38,6 @@ def test_regression_issue_630(self, *_: Any, **__: Any) -> None:
38
38
with open (join (OWN_DATA_DIRECTORY , 'xml' , '1.6' , 'regression_issue630.xml' )) as input_xml :
39
39
Bom .from_xml (input_xml )
40
40
41
- def test_regression_issue_850 (self , * _ : Any , ** __ : Any ) -> None :
42
- # tests https://github.com/CycloneDX/cyclonedx-python-lib/issues/850
43
- with open (join (OWN_DATA_DIRECTORY , 'xml' , '1.6' , 'regression_issue850.xml' )) as input_xml :
44
- Bom .from_xml (input_xml )
45
-
46
41
def test_regression_issue677 (self , * _ : Any , ** __ : Any ) -> None :
47
42
# tests https://github.com/CycloneDX/cyclonedx-python-lib/issues/677
48
43
with open (join (OWN_DATA_DIRECTORY , 'json' , '1.5' , 'issue677.json' )) as input_json :
@@ -58,3 +53,8 @@ def test_regression_issue753(self, *_: Any, **__: Any) -> None:
58
53
bom = Bom .from_json (json )
59
54
self .assertEqual (2 , len (bom .components ))
60
55
bom .validate ()
56
+
57
+ def test_regression_issue_850 (self , * _ : Any , ** __ : Any ) -> None :
58
+ # tests https://github.com/CycloneDX/cyclonedx-python-lib/issues/850
59
+ with open (join (OWN_DATA_DIRECTORY , 'xml' , '1.6' , 'regression_issue850.xml' )) as input_xml :
60
+ Bom .from_xml (input_xml )
0 commit comments