Lower case github repo urls in tests

Github only links the lower case version and this simplifies some testing i want to do.
This commit is contained in:
konstin 2024-04-12 10:05:55 +02:00
parent 98fd9d7d14
commit 2d2a9beb04
1 changed files with 2 additions and 2 deletions

View File

@ -556,7 +556,7 @@ fn install_git_tag() -> Result<()> {
let context = TestContext::new("3.12");
let requirements_txt = context.temp_dir.child("requirements.txt");
requirements_txt.write_str("werkzeug @ git+https://github.com/pallets/WerkZeug.git@2.0.0")?;
requirements_txt.write_str("werkzeug @ git+https://github.com/pallets/werkzeug.git@2.0.0")?;
uv_snapshot!(command(&context)
.arg("requirements.txt")
@ -569,7 +569,7 @@ fn install_git_tag() -> Result<()> {
Resolved 1 package in [TIME]
Downloaded 1 package in [TIME]
Installed 1 package in [TIME]
+ werkzeug==2.0.0 (from git+https://github.com/pallets/WerkZeug.git@af160e0b6b7ddd81c22f1652c728ff5ac72d5c74)
+ werkzeug==2.0.0 (from git+https://github.com/pallets/werkzeug.git@af160e0b6b7ddd81c22f1652c728ff5ac72d5c74)
"###
);