From c3f3588419f885e87b315ec2bb536e1efe0d50a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hozza?= Date: Mon, 11 Nov 2024 14:29:24 +0100 Subject: [PATCH] test_util_sbom_spdx: fix imported module name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There was a typo in the imported module name, which caused the test to be always skipped. Signed-off-by: Tomáš Hozza --- test/mod/test_util_sbom_spdx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mod/test_util_sbom_spdx.py b/test/mod/test_util_sbom_spdx.py index ac908a7f..6765862b 100644 --- a/test/mod/test_util_sbom_spdx.py +++ b/test/mod/test_util_sbom_spdx.py @@ -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():