Skip to content

Commit 72d8c5d

Browse files
authored
Fix test broken on windows by fake server binding to ipv6 (#1220)
1 parent 33b8680 commit 72d8c5d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/sdk-core/tests/integ_tests/client_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ async fn http_proxy() {
375375
opts.set_skip_get_system_info(true);
376376

377377
// Connect client with no proxy and make call and confirm reached
378-
opts.target = format!("http://127.0.0.1:{}", server.addr.port())
378+
opts.target = format!("http://[::1]:{}", server.addr.port())
379379
.parse()
380380
.unwrap();
381381
let connection = Connection::connect(opts.clone()).await.unwrap();

0 commit comments

Comments
 (0)