Skip to content

Commit

Permalink
Merge pull request #50 from danielparks/clippy-quotes
Browse files Browse the repository at this point in the history
Fix clippy lint: r#"..."# quotes.
  • Loading branch information
danielparks authored Feb 2, 2024
2 parents 4f994df + 00401c6 commit 6c91256
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/repos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ fn ahead_1() {
helpers::assert_git_status_vars(
&root,
"clone",
r#"
r"
repo_state=Clean
repo_workdir=@REPO@/
repo_empty=false
Expand All @@ -705,7 +705,7 @@ fn ahead_1() {
unstaged_count=0
staged_count=0
conflicted_count=0
"#,
",
);
}

Expand All @@ -725,7 +725,7 @@ fn ahead_1_behind_1() {
helpers::assert_git_status_vars(
&root,
"clone",
r#"
r"
repo_state=Clean
repo_workdir=@REPO@/
repo_empty=false
Expand All @@ -743,7 +743,7 @@ fn ahead_1_behind_1() {
unstaged_count=0
staged_count=0
conflicted_count=0
"#,
",
);
}

Expand All @@ -762,7 +762,7 @@ fn behind_1() {
helpers::assert_git_status_vars(
&root,
"clone",
r#"
r"
repo_state=Clean
repo_workdir=@REPO@/
repo_empty=false
Expand All @@ -780,6 +780,6 @@ fn behind_1() {
unstaged_count=0
staged_count=0
conflicted_count=0
"#,
",
);
}

0 comments on commit 6c91256

Please sign in to comment.