Skip to content

Commit 3e6f633

Browse files
committed
Fix snapshot
1 parent 5cde186 commit 3e6f633

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

crates/uv/tests/it/edit.rs

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4588,12 +4588,10 @@ fn remove_repeated() -> Result<()> {
45884588
----- stdout -----
45894589
45904590
----- stderr -----
4591-
Resolved 4 packages in [TIME]
4592-
Prepared 3 packages in [TIME]
4593-
Installed 3 packages in [TIME]
4594-
+ anyio==4.3.0
4595-
+ idna==3.6
4596-
+ sniffio==1.3.1
4591+
Resolved 2 packages in [TIME]
4592+
Prepared 1 package in [TIME]
4593+
Installed 1 package in [TIME]
4594+
+ anyio==4.3.0+foo (from file://[WORKSPACE]/scripts/packages/anyio_local)
45974595
"###);
45984596

45994597
let pyproject_toml = context.read("pyproject.toml");
@@ -4616,6 +4614,7 @@ fn remove_repeated() -> Result<()> {
46164614
dev-dependencies = ["anyio"]
46174615
46184616
[tool.uv.sources]
4617+
anyio = { path = "[WORKSPACE]/scripts/packages/anyio_local" }
46194618
"###
46204619
);
46214620
});
@@ -4626,8 +4625,8 @@ fn remove_repeated() -> Result<()> {
46264625
----- stdout -----
46274626
46284627
----- stderr -----
4629-
Resolved 4 packages in [TIME]
4630-
Audited 3 packages in [TIME]
4628+
Resolved 2 packages in [TIME]
4629+
Audited 1 package in [TIME]
46314630
"###);
46324631

46334632
let pyproject_toml = context.read("pyproject.toml");
@@ -4650,6 +4649,7 @@ fn remove_repeated() -> Result<()> {
46504649
dev-dependencies = ["anyio"]
46514650
46524651
[tool.uv.sources]
4652+
anyio = { path = "[WORKSPACE]/scripts/packages/anyio_local" }
46534653
"###
46544654
);
46554655
});
@@ -4661,10 +4661,8 @@ fn remove_repeated() -> Result<()> {
46614661
46624662
----- stderr -----
46634663
Resolved 1 package in [TIME]
4664-
Uninstalled 3 packages in [TIME]
4665-
- anyio==4.3.0
4666-
- idna==3.6
4667-
- sniffio==1.3.1
4664+
Uninstalled 1 package in [TIME]
4665+
- anyio==4.3.0+foo (from file://[WORKSPACE]/scripts/packages/anyio_local)
46684666
"###);
46694667

46704668
let pyproject_toml = context.read("pyproject.toml");

0 commit comments

Comments
 (0)