Skip to content

Commit

Permalink
fix runtimeless test
Browse files Browse the repository at this point in the history
  • Loading branch information
jbr committed Apr 27, 2023
1 parent 02e901d commit 5c7f185
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions testing/src/runtimeless.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,13 @@ mod test {
.with_host("host.com")
.with_port(80)
.spawn("server 1");
handle1.info().await;

let handle2 = Config::<RuntimelessServer, ()>::new()
.with_host("other_host.com")
.with_port(80)
.spawn("server 2");
handle2.info().await;

let client = trillium_client::Client::new(RuntimelessClientConfig::default());
let mut conn = client.get("http://host.com").await?;
Expand Down

0 comments on commit 5c7f185

Please sign in to comment.