integration tests: images_test: images with multiple tags: is a NOP #8171
Labels
locked - please file new issue/PR
Assist humans wanting to comment on an old issue or PR with locked comments.
stale-issue
Discovered during #8165, filing in case that doesn't merge.
The following lines are NOPs:
podman/test/e2e/images_test.go
Lines 83 to 89 in 7149a7c
Adding
Expect(...).To(BeTrue())
leads to a new failure:LineInOutputContainsTag()
is itself broken, its map implementation is onedimensional and only tracks one tag: so in a case like the above, withfoo:a
,foo:b
, andfoo:c
, only one ofa/b/c
will be preserved and the rest of the tests will (falsely) fail. I wrote one possible fix for it but there is almost certainly a better way to do it. I am filing this in hopes that someone can quickly dash off a cleaner more idiomatic fix. (And, again, so the issue doesn't get lost if we find a better alternative to #8165).And hey, as long as someone's on this, could you also fix the misspelled
LineInOuputStartsWith()
?The text was updated successfully, but these errors were encountered: