Skip to content

Commit

Permalink
fix test case error
Browse files Browse the repository at this point in the history
  • Loading branch information
mxsm committed Jun 27, 2024
1 parent 1dbe411 commit 8039dc2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ mod tests {
let header = <UpdateConsumerOffsetRequestHeader as FromMap>::from(&map).unwrap();
assert_eq!(header.consumer_group, "");
assert_eq!(header.topic, "");
assert_eq!(header.queue_id, Some(0));
assert_eq!(header.commit_offset, Some(0));
assert_eq!(header.queue_id, None);
assert_eq!(header.commit_offset, None);
}
}

0 comments on commit 8039dc2

Please sign in to comment.