test_util_sbom_spdx: fix imported module name

There was a typo in the imported module name, which caused the test to
be always skipped.

Signed-off-by: Tomáš Hozza <thozza@redhat.com>
This commit is contained in:
Tomáš Hozza 2024-11-11 14:29:24 +01:00 committed by Simon de Vlieger
parent 0a64f08f08
commit c3f3588419

View file

@ -7,7 +7,7 @@ from osbuild.util.sbom.spdx import bom_pkgset_to_spdx2_doc, create_spdx2_documen
from osbuild.util.sbom.spdx2.model import CreatorType, ExternalPackageRefCategory, RelationshipType
testutil_dnf4 = pytest.importorskip("osbuild.testutil.dnf4")
bom_dnf = pytest.importorskip("osbuild.util.bom.dnf")
bom_dnf = pytest.importorskip("osbuild.util.sbom.dnf")
def test_create_spdx2_document():