Skip to content

Commit

Permalink
Fix bug error test in dnskey_rdata
Browse files Browse the repository at this point in the history
  • Loading branch information
konegoro committed Jan 12, 2024
1 parent 3e2992c commit 6d3bc4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/message/rdata/dnskey_rdata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ mod dnskey_rdata_test{

#[test]
fn from_bytes_error(){
let bytes_test: Vec<u8> = vec![0, 1, 2, 3];
let bytes_test: Vec<u8> = vec![0, 1, 2];

let result = DnskeyRdata::from_bytes(&bytes_test, &bytes_test);

Expand Down

0 comments on commit 6d3bc4c

Please sign in to comment.