Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
zen-xu committed Nov 27, 2024
1 parent 483ac58 commit f889cfb
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions crates/pixi_config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1241,14 +1241,7 @@ UNUSED = "unused"
let (config, _) = Config::from_toml(toml).unwrap();
assert_eq!(
config.pypi_config().allow_insecure_host,
vec![
TrustedHost::Host {
scheme: Some("https".into()),
host: "localhost".into(),
port: Some(1234),
},
TrustedHost::Wildcard,
]
vec!["https://localhost:1234", "*",]
);
}

Expand Down

0 comments on commit f889cfb

Please sign in to comment.