Fix asset collection tests by setting asset_globs

The Docker and Daytona asset collection tests were failing because
asset_globs was empty, causing the engine to skip collection entirely.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-03-19 09:34:40 -04:00
parent f0eaec9c55
commit 36c0debbed
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -1307,7 +1307,7 @@ async fn daytona_asset_collection() {
git_author: fabro_workflows::git::GitAuthor::default(),
base_branch: None,
pull_request: None,
asset_globs: Vec::new(),
asset_globs: vec!["test-results/**".to_string()],
workflow_slug: None,
};

View file

@ -13388,7 +13388,7 @@ async fn asset_collection_docker_sandbox() {
git_author: fabro_workflows::git::GitAuthor::default(),
base_branch: None,
pull_request: None,
asset_globs: Vec::new(),
asset_globs: vec!["test-results/**".to_string()],
workflow_slug: None,
};