From 5894d2dc3dc1652783a06d761895d34d78ca8b1d Mon Sep 17 00:00:00 2001 From: shaharkazaz Date: Mon, 27 Jul 2026 20:22:48 +0300 Subject: [PATCH] fix(tests): drop removed TrueAffectedConfig fields from integration test literals #83 removed root_ts_config/include/ignored_paths from TrueAffectedConfig, but #84/#86/#89/#90 had each added new test literals still setting them. Those merged without textual conflict, so main's integration test binary stopped compiling (E0560 x6) while every PR reported mergeable. Removes the six stale field initializers. All suites green: lib 239, integration 74, cli 16. --- tests/integration_test.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/integration_test.rs b/tests/integration_test.rs index ce3f9cf..6bf9254 100644 --- a/tests/integration_test.rs +++ b/tests/integration_test.rs @@ -2511,7 +2511,6 @@ export function Panel() { cwd: root.to_path_buf(), base: "main".to_string(), head: None, - root_ts_config: None, projects: vec![ Project { name: "proj-a".to_string(), @@ -2538,8 +2537,6 @@ export function Panel() { targets: vec![], }, ], - include: vec![], - ignored_paths: vec![], lockfile_strategy: LockfileStrategy::None, }; @@ -4523,10 +4520,7 @@ fn turbo_config_for(root: &Path, projects: Vec, base: &str) -> TrueAffe cwd: root.to_path_buf(), base: base.to_string(), head: None, - root_ts_config: None, projects, - include: vec![], - ignored_paths: vec![], lockfile_strategy: LockfileStrategy::None, } }