Skip to content

Commit 3c3e1a8

Browse files
author
Auto Review
committed
fix(browser): keep proxy bypass opt-out deterministic
1 parent 5ac557e commit 3c3e1a8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

code-rs/browser/src/manager.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2657,8 +2657,8 @@ mod tests {
26572657
.env("http_proxy", &proxy_url)
26582658
.env("https_proxy", &proxy_url)
26592659
.env("all_proxy", &proxy_url)
2660-
.env("NO_PROXY", "")
2661-
.env("no_proxy", "")
2660+
.env("NO_PROXY", "example.invalid")
2661+
.env("no_proxy", "example.invalid")
26622662
.output()
26632663
.expect("spawn child test");
26642664

0 commit comments

Comments
 (0)