Skip to content

Commit

Permalink
test: Fix tests constructing git repos without refspecs
Browse files Browse the repository at this point in the history
  • Loading branch information
notheotherben committed Dec 9, 2024
1 parent 57d04f8 commit fc11aac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pairing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ mod tests {
async_stream::stream! {
let repos: Vec<crate::helpers::github::GitHubRepo> = load_test_file("github.repos.0.json").unwrap();
for repo in repos {
yield Ok(GitRepo::new(repo.full_name.as_str(), repo.clone_url.as_str())
yield Ok(GitRepo::new(repo.full_name.as_str(), repo.clone_url.as_str(), None)
.with_metadata_source(&repo));
}
}
Expand Down

0 comments on commit fc11aac

Please sign in to comment.