Skip to content

Commit 3fd7cf3

Browse files
committed
Use a different site for real-world tests
`example.com` has become unreliable, like a second connection has its SYN ignored.
1 parent a476c33 commit 3fd7cf3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/runner.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,15 +239,15 @@ fn client_real_world() {
239239
let openssl_output = Command::new("tests/maybe-valgrind.sh")
240240
.env("LD_LIBRARY_PATH", "")
241241
.env("NO_ECHO", "1")
242-
.args(["target/client", "example.com", "443", "default"])
242+
.args(["target/client", "jbp.io", "443", "default"])
243243
.stdout(Stdio::piped())
244244
.output()
245245
.map(print_output)
246246
.unwrap();
247247

248248
let rustls_output = Command::new("tests/maybe-valgrind.sh")
249249
.env("NO_ECHO", "1")
250-
.args(["target/client", "example.com", "443", "default"])
250+
.args(["target/client", "jbp.io", "443", "default"])
251251
.stdout(Stdio::piped())
252252
.output()
253253
.map(print_output)

0 commit comments

Comments
 (0)