Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ mod tests {
conservative_tokens: Arc::from(
(0..8)
.map(|index| ConservativeCloneTokenV1::Syntax {
syntax_kind: "identifier".to_owned(),
syntax_kind: "identifier".into(),
text: format!("token_{seed}_{index}"),
})
.collect::<Vec<_>>(),
Expand Down
6 changes: 6 additions & 0 deletions crates/tracedecay-sessions/src/repository_provenance_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ impl GitFixture {
tracedecay_runtime_core::git::try_git_program()
.expect("absolute git executable should resolve"),
)
// Git 2.47+ detaches `maintenance run --auto` after a commit and holds
// `.git/objects/maintenance.lock` while it runs, which lands in one
// git-dir fingerprint and vanishes before the next. The read-only
// capture test compares those fingerprints, so the fixture must not
// write either.
.args(["-c", "maintenance.auto=false", "-c", "gc.auto=0"])
.args(args)
.current_dir(self.path())
.output()
Expand Down
Loading