Skip to content

Commit

Permalink
Fix test routines to include new fields
Browse files Browse the repository at this point in the history
  • Loading branch information
jknpark committed Jun 3, 2024
1 parent 37facba commit f9c1c37
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ingest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ mod tests {
resp_bytes: 295,
orig_pkts: 397,
resp_pkts: 511,
orig_l2_bytes: 21515,
resp_l2_bytes: 27889,
};
super::send_event(&mut channel.client.send, 9999, conn.clone())
.await
Expand Down
4 changes: 4 additions & 0 deletions src/publish.rs
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,8 @@ mod tests {
resp_bytes: 295,
orig_pkts: 397,
resp_pkts: 511,
orig_l2_bytes: 21515,
resp_l2_bytes: 27889,
};
let raw_event = bincode::serialize(&conn).unwrap();
let source = bincode::serialize(&"hello").unwrap();
Expand Down Expand Up @@ -706,6 +708,8 @@ mod tests {
resp_bytes: 295,
orig_pkts: 397,
resp_pkts: 511,
orig_l2_bytes: 21515,
resp_l2_bytes: 27889,
};
let raw_event = bincode::serialize(&conn).unwrap();

Expand Down

0 comments on commit f9c1c37

Please sign in to comment.