Fix missing comma before conclusions (#1042)

Closes https://github.com/astral-sh/puffin/issues/1010
This commit is contained in:
Zanie Blue 2024-01-22 13:31:09 -06:00 committed by GitHub
parent e21948f353
commit 89eb8547ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 15 additions and 15 deletions

View file

@ -282,7 +282,7 @@ impl ReportFormatter<PubGrubPackage, Range<Version>> for PubGrubReportFormatter<
format!(
"And because {}we can conclude that {}",
Padded::from_string("", &external, " "),
Padded::from_string("", &external, ", "),
Padded::from_string("", &terms, "."),
)
}

View file

@ -660,7 +660,7 @@ async fn msgraph_sdk() -> Result<()> {
assert_snapshot!(err, @r###"
Because only msgraph-core<1.0.0a2 is available and msgraph-sdk==1.0.0 depends on msgraph-core>=1.0.0a2, we can conclude that msgraph-sdk==1.0.0 cannot be used.
And because you require msgraph-sdk==1.0.0 we can conclude that the requirements are unsatisfiable.
And because you require msgraph-sdk==1.0.0, we can conclude that the requirements are unsatisfiable.
hint: msgraph-core was requested with a pre-release marker (e.g., msgraph-core>=1.0.0a2), but pre-releases weren't enabled (try: `--prerelease=allow`)
"###);