Skip to content

Commit 66c46e9

Browse files
committed
rebase
1 parent d3b60f4 commit 66c46e9

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/bin/compare_for_file.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,4 @@ fn run_optimized(project_root: &Path, config: &OwnershipConfig, file_path: &Path
176176
lines.join("\n")
177177
}
178178
}
179-
}
179+
}

src/ownership.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,4 +217,4 @@ mod tests {
217217
assert!(team_ownership.is_err(), "Team not found");
218218
Ok(())
219219
}
220-
}
220+
}

src/ownership/for_file_fast.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,4 +421,4 @@ mod tests {
421421
assert_eq!(result.0, "Payroll");
422422
matches!(result.1, Source::TeamGem);
423423
}
424-
}
424+
}

src/project_file_builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ impl<'a> ProjectFileBuilder<'a> {
4747
}
4848
}
4949

50-
pub(crate)fn build_project_file_without_cache(path: &PathBuf) -> ProjectFile {
50+
pub(crate) fn build_project_file_without_cache(path: &PathBuf) -> ProjectFile {
5151
let content = match std::fs::read_to_string(path) {
5252
Ok(content) => content,
5353
Err(_) => {

src/runner.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,4 +359,4 @@ impl Runner {
359359
},
360360
}
361361
}
362-
}
362+
}

tests/git_stage_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ where
4141
assert!(run_config.codeowners_file_path.exists(), "CODEOWNERS file was not created");
4242
let staged = is_file_staged(&run_config.project_root, CODEOWNERS_REL);
4343
assert_eq!(staged, expected_staged, "unexpected staged state for CODEOWNERS");
44-
}
44+
}

tests/valid_project_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,4 +274,4 @@ fn test_for_missing_team() -> Result<(), Box<dyn Error>> {
274274
"}));
275275

276276
Ok(())
277-
}
277+
}

0 commit comments

Comments
 (0)