From 1cd75b7d685c84f6fcae2db36b7da277425f8098 Mon Sep 17 00:00:00 2001 From: mikcl <43545032+Mikcl@users.noreply.github.com> Date: Thu, 25 Jul 2024 20:45:14 +0100 Subject: [PATCH] python-cataloger: fix normalization test (#3073) Signed-off-by: mikcl --- syft/pkg/cataloger/python/parse_requirements_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syft/pkg/cataloger/python/parse_requirements_test.go b/syft/pkg/cataloger/python/parse_requirements_test.go index 139b0b62a..cd796955c 100644 --- a/syft/pkg/cataloger/python/parse_requirements_test.go +++ b/syft/pkg/cataloger/python/parse_requirements_test.go @@ -54,9 +54,9 @@ func TestParseRequirementsTxt(t *testing.T) { }, }, { - Name: "dots-._allowed", + Name: "dots-allowed", Version: "1.0.0", - PURL: "pkg:pypi/dots-._allowed@1.0.0", + PURL: "pkg:pypi/dots-allowed@1.0.0", Locations: locations, Language: pkg.Python, Type: pkg.PythonPkg,