@@ -38,11 +38,6 @@ def test_regression_issue_630(self, *_: Any, **__: Any) -> None:
3838 with open (join (OWN_DATA_DIRECTORY , 'xml' , '1.6' , 'regression_issue630.xml' )) as input_xml :
3939 Bom .from_xml (input_xml )
4040
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-
4641 def test_regression_issue677 (self , * _ : Any , ** __ : Any ) -> None :
4742 # tests https://github.com/CycloneDX/cyclonedx-python-lib/issues/677
4843 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:
5853 bom = Bom .from_json (json )
5954 self .assertEqual (2 , len (bom .components ))
6055 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