Skip to content

Commit

Permalink
stringi
Browse files Browse the repository at this point in the history
  • Loading branch information
rgbkrk committed Dec 13, 2024
1 parent fc5a169 commit a30c8de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/codec/zmq_codec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ pub(crate) mod tests {
.expect("decode success")
.expect("single message");

eprintln!(&message);
eprintln!("{:?}", &message);
match message {
Message::Message(m) => {
assert_eq!(6, m.into_vecdeque().len());
Expand All @@ -201,7 +201,7 @@ pub(crate) mod tests {
.decode(&mut bytes)
.expect("decode success")
.expect("single message");
eprintln!(&message);
eprintln!("{:?}", &message);
assert_eq!(bytes.len(), 0);
match message {
Message::Message(m) => {
Expand Down

0 comments on commit a30c8de

Please sign in to comment.