Skip to content

Commit 27e4945

Browse files
committed
tests
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
1 parent 51d15ce commit 27e4945

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/test_real_world_examples.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)