diff options
| author | A Farzat <a@farzat.xyz> | 2026-06-05 12:12:43 +0300 |
|---|---|---|
| committer | A Farzat <a@farzat.xyz> | 2026-06-05 16:05:42 +0300 |
| commit | 7894f6954f3810fdc6e2b2ed1b507c232c168d59 (patch) | |
| tree | 785e8dad04db5b5ae2262380ab1e5720798acb38 /src/main.rs | |
| parent | 58d6afbd8bb02890106f84621a1cda94c7b5d3bf (diff) | |
| download | repo2markdown-7894f6954f3810fdc6e2b2ed1b507c232c168d59.tar.gz repo2markdown-7894f6954f3810fdc6e2b2ed1b507c232c168d59.zip | |
Remove quotations around filenames
Apparently they consume tokens and dilute attention for no benefit.
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index bb01e47..92b84c4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -140,7 +140,7 @@ mod tests { let output_str = String::from_utf8(output).unwrap(); - assert!(output_str.contains("## File: \"test_main.rs\"")); + assert!(output_str.contains("## File: test_main.rs")); assert!(output_str.contains("fn main() {}")); } @@ -181,7 +181,7 @@ mod tests { let output = String::from_utf8(output).unwrap(); - assert!(output.contains("## File: \"test/main.rs\"")); + assert!(output.contains("## File: test/main.rs")); } #[test] |
