Skip to content

Commit

Permalink
test: push promises in different order?
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Aug 21, 2023
1 parent a3b4acb commit 428140d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/h2-tests/tests/server.rs
Expand Up @@ -296,10 +296,10 @@ async fn push_request_against_concurrency() {
.await;
client.recv_frame(frames::data(2, &b""[..]).eos()).await;
client
.recv_frame(frames::headers(1).response(200).eos())
.recv_frame(frames::headers(4).response(200).eos())
.await;
client
.recv_frame(frames::headers(4).response(200).eos())
.recv_frame(frames::headers(1).response(200).eos())
.await;
};

Expand Down

0 comments on commit 428140d

Please sign in to comment.