Skip to content

Commit 10c8905

Browse files
committed
fix: comment
1 parent 6fcfb2b commit 10c8905

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rust/catalyst-types/src/uuid/uuid_v4.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ mod tests {
9696

9797
#[test]
9898
fn test_invalid_version_uuid() {
99-
let invalid_version_uuid = UuidV4::from(Uuid::from_u128(0)); // Zero UUID is not valid.
99+
let invalid_version_uuid = UuidV4::from(Uuid::from_u128(0));
100100
assert!(
101101
!invalid_version_uuid.is_valid(),
102102
"Zero UUID should not be valid"
@@ -127,7 +127,7 @@ mod tests {
127127

128128
#[test]
129129
fn test_try_from_cbor_invalid_uuid() {
130-
let cbor_value = Value::Bytes(vec![0; 16]); // Zeroed-out UUID bytes
130+
let cbor_value = Value::Bytes(vec![0; 16]);
131131
let result = UuidV4::try_from(&cbor_value);
132132

133133
assert!(

0 commit comments

Comments
 (0)