forked from mirrors/kingfisher
fixed failing windows test
This commit is contained in:
parent
e1c61f8f33
commit
cf6c4cae0d
1 changed files with 4 additions and 1 deletions
|
|
@ -83,7 +83,10 @@ fn smoke_scan_docker_archive() -> anyhow::Result<()> {
|
|||
.assert()
|
||||
.code(200)
|
||||
.stdout(
|
||||
predicate::str::contains(github_pat).and(predicate::str::contains("app/secret.txt")),
|
||||
predicate::str::contains(github_pat).and(
|
||||
predicate::str::contains("app/secret.txt")
|
||||
.or(predicate::str::contains("app\\\\secret.txt")),
|
||||
),
|
||||
);
|
||||
|
||||
Ok(())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue