Skip to content

Commit bbb643a

Browse files
authored
Fix/gha failing (#861) (#862)
* output checkDockerImageExists results as it seems to be the common factor * allow ':' in docker images output * disable print again, but keep it as println. print was pretty much unreadable.
1 parent a59ebc8 commit bbb643a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/scala/io/viash/TestHelper.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ object TestHelper {
9898
Seq("docker", "images", name)
9999
)
100100

101-
// print(out)
102-
val regex = s"$name\\s*$tag".r
101+
// println(out)
102+
val regex = s"$name(\\s*:?)$tag".r
103103

104104
regex.findFirstIn(out.output).isDefined
105105
}

0 commit comments

Comments
 (0)