Skip to content

Commit e13b874

Browse files
branchseerclaude
andcommitted
fix: remove debug eprintln in glob_inputs tests
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 379326a commit e13b874

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

crates/vite_task/src/session/execute/glob_inputs.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,6 @@ mod tests {
439439
let negative = std::collections::BTreeSet::new();
440440

441441
let result = compute_globbed_inputs(&sub_pkg, &workspace, &positive, &negative).unwrap();
442-
eprintln!("dotdot positive result: {result:#?}");
443442
assert!(
444443
result.contains_key(&RelativePathBuf::new("packages/shared/src/utils.ts").unwrap()),
445444
"should find sibling package file via ../shared/src/**"
@@ -455,7 +454,6 @@ mod tests {
455454
std::iter::once("../shared/dist/**".into()).collect();
456455

457456
let result = compute_globbed_inputs(&sub_pkg, &workspace, &positive, &negative).unwrap();
458-
eprintln!("dotdot negative result: {result:#?}");
459457
assert!(
460458
result.contains_key(&RelativePathBuf::new("packages/shared/src/utils.ts").unwrap()),
461459
"should include non-excluded sibling file"

0 commit comments

Comments
 (0)