File tree Expand file tree Collapse file tree
src/test/scala/io/viash/auxiliary Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ class MainBuildAuxiliaryDockerTag extends AnyFunSuite with BeforeAndAfterAll {
7171
7272 // run the script
7373 val stdout = Exec .run(Seq (executableBashTagFile.toString))
74- assert(stdout.contains(" GNU bash, version 3.2 " ))
74+ assert(stdout.contains(" GNU bash, version 4.4 " ))
7575
7676 // check whether the internal docker is correct
7777 val dockerout = Exec .run(Seq (executableBashTagFile.toString, " ---dockerfile" ))
@@ -80,7 +80,7 @@ class MainBuildAuxiliaryDockerTag extends AnyFunSuite with BeforeAndAfterAll {
8080 // LABEL ...
8181 // RUN :
8282 // Allow for extra spaces just in case the format changes slightly format-wise but without functional differences
83- val regex = """ ^FROM bash:3\.2 [\r\n\s]*.*""" .r
83+ val regex = """ ^FROM bash:4\.4 [\r\n\s]*.*""" .r
8484 assert(regex.findFirstIn(dockerout).isDefined, regex.toString)
8585 }
8686
@@ -168,7 +168,7 @@ class MainBuildAuxiliaryDockerTag extends AnyFunSuite with BeforeAndAfterAll {
168168
169169 // run the script
170170 val stdout = Exec .run(Seq (executableBashTagFile.toString))
171- assert(stdout.contains(" GNU bash, version 3.2 " ))
171+ assert(stdout.contains(" GNU bash, version 4.4 " ))
172172
173173 // check whether script is using the expected docker image
174174 val contentSource = Source .fromFile(executableBashTagFile)
You can’t perform that action at this time.
0 commit comments