Skip to content

Commit

Permalink
Use a slightly smaller message size in session tests
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierHecart committed Sep 19, 2023
1 parent 8959f4d commit d2ed08d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zenoh/tests/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const TIMEOUT: Duration = Duration::from_secs(60);
const SLEEP: Duration = Duration::from_secs(1);

const MSG_COUNT: usize = 1_000;
const MSG_SIZE: [usize; 2] = [1_024, 131_072];
const MSG_SIZE: [usize; 2] = [1_024, 100_000];

macro_rules! ztimeout {
($f:expr) => {
Expand Down

0 comments on commit d2ed08d

Please sign in to comment.