diff --git a/syft/cataloger/java/test-fixtures/java-builds/example-jenkins-plugin/src/main/resources/index.jelly b/syft/cataloger/java/test-fixtures/java-builds/example-jenkins-plugin/src/main/resources/index.jelly index 35f37a7f2..4fd118507 100644 --- a/syft/cataloger/java/test-fixtures/java-builds/example-jenkins-plugin/src/main/resources/index.jelly +++ b/syft/cataloger/java/test-fixtures/java-builds/example-jenkins-plugin/src/main/resources/index.jelly @@ -1,4 +1,3 @@
- TODO
diff --git a/syft/pkg/catalog.go b/syft/pkg/catalog.go index 97bf53a76..5afde2998 100644 --- a/syft/pkg/catalog.go +++ b/syft/pkg/catalog.go @@ -8,8 +8,6 @@ import ( "github.com/anchore/syft/internal/log" ) -// TODO: add reader methods (by type, id, fuzzy search, etc) - var nextPackageID int64 // Catalog represents a collection of Packages. diff --git a/syft/presenter/text/presenter_test.go b/syft/presenter/text/presenter_test.go index f8d819943..96dbd84c1 100644 --- a/syft/presenter/text/presenter_test.go +++ b/syft/presenter/text/presenter_test.go @@ -93,7 +93,7 @@ func TestTextImgPresenter(t *testing.T) { }) // stub out all the digests so that they don't affect tests comparisons - // TODO: update with go-testutils feature when issue #1 is resolved + // TODO: update with stereoscope test utils feature when this issue is resolved: https://github.com/anchore/stereoscope/issues/43 for _, l := range img.Layers { l.Metadata.Digest = "sha256:ad8ecdc058976c07e7e347cb89fa9ad86a294b5ceaae6d09713fb035f84115abf3c4a2388a4af3aa60f13b94f4c6846930bdf53" } diff --git a/test/inline-compare/compare-all.sh b/test/inline-compare/compare-all.sh index 4a47fb3ab..54733d6ff 100755 --- a/test/inline-compare/compare-all.sh +++ b/test/inline-compare/compare-all.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash set -eu -# TODO: add "alpine:3.12.0" back -images=("debian:10.5" "centos:8.2.2004" ) +# TODO: Add "alpine:3.12.0" back in when we've figured out how to handle the apk version field w/ and w/o release information (see issue: https://github.com/anchore/syft/pull/195) +images=("debian:10.5" "centos:8.2.2004") # gather all image analyses for img in "${images[@]}"; do @@ -14,4 +14,4 @@ done for img in "${images[@]}"; do echo "Comparing results for $img" COMPARE_IMAGE=${img} make compare-image -done \ No newline at end of file +done