From b20d9c07b9b32b1a28f8d97fb74caf0f245423c2 Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Thu, 12 Oct 2023 10:45:32 -0400 Subject: [PATCH] incorporate .net core improvements Signed-off-by: Alex Goodman --- test/integration/match_by_image_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/match_by_image_test.go b/test/integration/match_by_image_test.go index 60ef75800de0..56cbc5004f91 100644 --- a/test/integration/match_by_image_test.go +++ b/test/integration/match_by_image_test.go @@ -168,7 +168,7 @@ func addPythonMatches(t *testing.T, theSource source.Source, catalog *syftPkg.Co func addDotnetMatches(t *testing.T, theSource source.Source, catalog *syftPkg.Collection, theStore *mockStore, theResult *match.Matches) { packages := catalog.PackagesByPath("/dotnet/TestLibrary.deps.json") - if len(packages) != 1 { + if len(packages) != 2 { // TestLibrary + AWSSDK.Core for _, p := range packages { t.Logf("Dotnet Package: %s %+v", p.ID(), p) }