Skip to content

Commit 80959bc

Browse files
committed
Fix snapshot for sync_active_script_environment
1 parent 6c6a62b commit 80959bc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/uv/tests/it/sync.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3703,8 +3703,8 @@ fn sync_active_script_environment() -> Result<()> {
37033703
.filters()
37043704
.into_iter()
37053705
.chain(vec![(
3706-
r"environments-v1/script-\w+",
3707-
"environments-v1/script-[HASH]",
3706+
r"environments-v2/script-[a-z0-9]+",
3707+
"environments-v2/script-[HASH]",
37083708
)])
37093709
.collect::<Vec<_>>();
37103710

@@ -3715,8 +3715,8 @@ fn sync_active_script_environment() -> Result<()> {
37153715
----- stdout -----
37163716
37173717
----- stderr -----
3718-
warning: `VIRTUAL_ENV=foo` does not match the script environment path `[CACHE_DIR]/environments-v1/script-[HASH]` and will be ignored; use `--active` to target the active environment instead
3719-
Creating script environment at: [CACHE_DIR]/environments-v1/script-[HASH]
3718+
warning: `VIRTUAL_ENV=foo` does not match the script environment path `[CACHE_DIR]/environments-v2/script-[HASH]` and will be ignored; use `--active` to target the active environment instead
3719+
Creating script environment at: [CACHE_DIR]/environments-v2/script-[HASH]
37203720
Resolved 3 packages in [TIME]
37213721
Prepared 3 packages in [TIME]
37223722
Installed 3 packages in [TIME]

0 commit comments

Comments
 (0)