summaryrefslogtreecommitdiff
path: root/test/script/publish.et
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2026-09-11 21:20:46 +0200
committerRoman Smrž <roman.smrz@seznam.cz>2026-09-13 15:05:42 +0200
commita589e61c2b807196696632eb17e8ad573daa9c08 (patch)
tree254b6eb0c5a31de0cc94380ebdc00489ba54d010 /test/script/publish.et
parent73a141316db78b942160b11bdb3c92208f3eddd6 (diff)
Use colon as preferred job ID separator
Changelog: Colon `:` is now accepted and preferred as job ID separator.
Diffstat (limited to 'test/script/publish.et')
-rw-r--r--test/script/publish.et8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/script/publish.et b/test/script/publish.et
index 29d0742..690e82d 100644
--- a/test/script/publish.et
+++ b/test/script/publish.et
@@ -131,11 +131,11 @@ test PushRepo:
let cmd_run = [ "--repo=source_repo:workdir", "--repo=target_repo:target.git", "run" ]
local:
- spawn on n as p args (cmd_run ++ [ "push_job.$cb" ]) killwith SIGINT
+ spawn on n as p args (cmd_run ++ [ "push_job:$cb" ]) killwith SIGINT
expect from p:
- /job-enqueue push_job.$cb/
- /job-start push_job.$cb/
- /job-finish push_job.$cb done/
+ /job-enqueue push_job:$cb/
+ /job-start push_job:$cb/
+ /job-finish push_job:$cb done/
expect /(.*)/ from p capture finish
guard (finish == "run-finish")